Mercurial > lcfOS
view python/c3/__init__.py @ 214:6875360e8390
Remove semantics
author | Windel Bouwman |
---|---|
date | Fri, 05 Jul 2013 11:18:58 +0200 |
parents | de3a68f677a5 |
children | c1ccb1cb4cef |
line wrap: on
line source
""" This is the C3 language front end. """ # Convenience imports: from .parser import Parser from .semantics import Semantics from .typecheck import TypeChecker from .analyse import Analyzer from .codegenerator import CodeGenerator from .astprinter import AstPrinter from .visitor import Visitor from .builder import Builder