annotate python/ppci/c3/__init__.py @ 365:98ff43cfdd36

Nasty bug in adr instruction
author Windel Bouwman
date Wed, 19 Mar 2014 22:32:04 +0100
parents e609d5296ee9
children
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 from .parser import Parser
293
6aa721e7b10b Try to improve build sequence
Windel Bouwman
parents: 288
diff changeset
4 from .lexer import Lexer
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
5 from .codegenerator import CodeGenerator
305
0615b5308710 Updated docs
Windel Bouwman
parents: 300
diff changeset
6 from .visitor import Visitor
0615b5308710 Updated docs
Windel Bouwman
parents: 300
diff changeset
7 from .visitor import AstPrinter
165
598d3888a11c Added front class and fided AST view
Windel Bouwman
parents: 164
diff changeset
8 from .builder import Builder