Mercurial > lcfOS
view python/c3/__init__.py @ 207:8b2f20aae086
cleaning of files
author | Windel Bouwman |
---|---|
date | Sat, 29 Jun 2013 10:05:42 +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