Mercurial > lcfOS
view python/ppci/c3/__init__.py @ 305:0615b5308710
Updated docs
author | Windel Bouwman |
---|---|
date | Fri, 06 Dec 2013 13:50:38 +0100 |
parents | 158068af716c |
children | e609d5296ee9 |
line wrap: on
line source
""" This is the C3 language front end. """ from .parser import Parser from .lexer import Lexer from .analyse import Analyzer from .analyse import TypeChecker from .codegenerator import CodeGenerator from .visitor import Visitor from .visitor import AstPrinter from .builder import Builder