diff 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 diff
--- a/python/ppci/frontends/ks/__init__.py	Mon Dec 24 16:35:22 2012 +0100
+++ b/python/ppci/frontends/ks/__init__.py	Mon Dec 24 17:55:08 2012 +0100
@@ -1,10 +1,12 @@
-
 """
  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
+