Mercurial > lcfOS
annotate python/c3/__init__.py @ 213:003c8a976fff
Merge of semantics and parser again ..
author | Windel Bouwman |
---|---|
date | Fri, 05 Jul 2013 11:18:48 +0200 |
parents | de3a68f677a5 |
children | c1ccb1cb4cef |
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 | |
9 from .semantics import Semantics | |
10 from .typecheck import TypeChecker | |
11 from .analyse import Analyzer | |
151 | 12 from .codegenerator import CodeGenerator |
163 | 13 from .astprinter import AstPrinter |
164 | 14 from .visitor import Visitor |
165 | 15 from .builder import Builder |
146 | 16 |