annotate python/ppci/frontends/ks/__init__.py @ 102:63937c8d1478

Fixes and start with ir generator
author windel
date Tue, 25 Dec 2012 11:11:24 +0100
parents af0d7913677a
children 6a303f835c6d
rev   line source
100
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
1 """
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
2 Frontend for the K# language.
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
3
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
4 This module can parse K# code and create LLVM intermediate code.
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
5 """
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
6
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
7 from .parser import KsParser
102
63937c8d1478 Fixes and start with ir generator
windel
parents: 101
diff changeset
8 from .irgenerator import KsIrGenerator
100
fe145e42259d Fixes after movage
windel
parents: 99
diff changeset
9
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 100
diff changeset
10 class KsFrontend:
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 100
diff changeset
11 def __init__(self):
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 100
diff changeset
12 pass
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 100
diff changeset
13