Mercurial > lcfOS
annotate python/c3/__init__.py @ 288:a747a45dcd78
Various styling work
author | Windel Bouwman |
---|---|
date | Thu, 21 Nov 2013 14:26:13 +0100 |
parents | 1c7c1e619be8 |
children | 6aa721e7b10b |
rev | line source |
---|---|
204 | 1 |
2 """ | |
3 This is the C3 language front end. | |
4 """ | |
5 | |
151 | 6 # Convenience imports: |
150 | 7 |
8 from .parser import Parser | |
287 | 9 from .analyse import Analyzer, TypeChecker |
151 | 10 from .codegenerator import CodeGenerator |
288 | 11 from .visitor import Visitor, AstPrinter |
165 | 12 from .builder import Builder |