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
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
1
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
2 """
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
3 This is the C3 language front end.
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
4 """
de3a68f677a5 Added long comment to c3 parser
Windel Bouwman
parents: 165
diff changeset
5
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
6 # Convenience imports:
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
7
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
8 from .parser import Parser
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 215
diff changeset
9 from .analyse import Analyzer, TypeChecker
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
10 from .codegenerator import CodeGenerator
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
11 from .visitor import Visitor, AstPrinter
165
598d3888a11c Added front class and fided AST view
Windel Bouwman
parents: 164
diff changeset
12 from .builder import Builder