comparison python/ppci/frontends/ks/nodes.py @ 101:af0d7913677a

Fixes and splitting into 3 stage
author windel
date Mon, 24 Dec 2012 17:55:08 +0100
parents fe145e42259d
children ed230e947dc6
comparison
equal deleted inserted replaced
100:fe145e42259d 101:af0d7913677a
1 """ 1 """
2 Parse tree elements 2 AST nodes for the K# language.
3 """ 3 """
4
4 class Node: 5 class Node:
5 location = None 6 location = None
6 def getChildren(self): 7 def getChildren(self):
7 children = [] 8 children = []
8 members = dir(self) 9 members = dir(self)