annotate python/c3/__init__.py @ 220:3f6c30a5d234
Major change in expression parsing to enable pointers and structs
author |
Windel Bouwman |
date |
Sat, 06 Jul 2013 21:32:20 +0200 |
parents |
c1ccb1cb4cef |
children |
1c7c1e619be8 |
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 .typecheck import TypeChecker
|
|
10 from .analyse import Analyzer
|
151
|
11 from .codegenerator import CodeGenerator
|
163
|
12 from .astprinter import AstPrinter
|
164
|
13 from .visitor import Visitor
|
165
|
14 from .builder import Builder
|
146
|
15
|