view python/ppci/frontends/ks/__init__.py @ 101:af0d7913677a

Fixes and splitting into 3 stage
author windel
date Mon, 24 Dec 2012 17:55:08 +0100
parents fe145e42259d
children 63937c8d1478
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

class KsFrontend:
   def __init__(self):
      pass