annotate python/c3/__init__.py @ 190:65dda7e7e8bd

Disable test with qt
author Windel Bouwman
date Sat, 25 May 2013 15:15:42 +0200
parents 598d3888a11c
children de3a68f677a5
rev   line source
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
1 # Convenience imports:
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
2
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
3 from .parser import Parser
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
4 from .semantics import Semantics
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
5 from .typecheck import TypeChecker
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
6 from .analyse import Analyzer
151
afc8c0207984 Added ir code generator stub
Windel Bouwman
parents: 150
diff changeset
7 from .codegenerator import CodeGenerator
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 151
diff changeset
8 from .astprinter import AstPrinter
164
e023d3ce1d63 Fix to loc of assignment
Windel Bouwman
parents: 163
diff changeset
9 from .visitor import Visitor
165
598d3888a11c Added front class and fided AST view
Windel Bouwman
parents: 164
diff changeset
10 from .builder import Builder
146
91af0e40f868 Moved several files
Windel Bouwman
parents:
diff changeset
11