annotate python/ppci/c3/__init__.py @ 300:158068af716c

yafm
author Windel Bouwman
date Tue, 03 Dec 2013 18:00:22 +0100
parents python/c3/__init__.py@6aa721e7b10b
children 0615b5308710
rev   line source
293
6aa721e7b10b Try to improve build sequence
Windel Bouwman
parents: 288
diff changeset
1 """ This is the C3 language front end. """
204
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
2
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
3
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
4 from .parser import Parser
293
6aa721e7b10b Try to improve build sequence
Windel Bouwman
parents: 288
diff changeset
5 from .lexer import Lexer
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 215
diff changeset
6 from .analyse import Analyzer, TypeChecker
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
7 from .codegenerator import CodeGenerator
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
8 from .visitor import Visitor, AstPrinter
165
598d3888a11c Added front class and fided AST view
Windel Bouwman
parents: 164
diff changeset
9 from .builder import Builder