Mercurial > lcfOS
view python/ppci/frontends/ks/__init__.py @ 103:28a35161ef23
Added forgotten ir generator
author | windel |
---|---|
date | Wed, 26 Dec 2012 10:53:33 +0100 |
parents | 63937c8d1478 |
children | 6a303f835c6d |
line wrap: on
line source
""" Frontend for the K# language. This module can parse K# code and create LLVM intermediate code. """ from .parser import KsParser from .irgenerator import KsIrGenerator class KsFrontend: def __init__(self): pass