Mercurial > lcfOS
view python/c3/__init__.py @ 204:de3a68f677a5
Added long comment to c3 parser
author | Windel Bouwman |
---|---|
date | Fri, 21 Jun 2013 15:01:08 +0200 |
parents | 598d3888a11c |
children | c1ccb1cb4cef |
line wrap: on
line source
""" This is the C3 language front end. """ # Convenience imports: from .parser import Parser from .semantics import Semantics from .typecheck import TypeChecker from .analyse import Analyzer from .codegenerator import CodeGenerator from .astprinter import AstPrinter from .visitor import Visitor from .builder import Builder