예제 #1
0
파일: template.py 프로젝트: smvv/pybison
 def dump(self, indent=0):
     """
     Dump out human-readable, indented parse tree
     Customise as needed - here, or in the node-specific subclasses
     """
     BisonNode.dump(self, indent)  # alter as needed
예제 #2
0
파일: template.py 프로젝트: csarn/pybison
 def dump(self, indent=0):
     """
     Dump out human-readable, indented parse tree
     Customise as needed - here, or in the node-specific subclasses
     """
     BisonNode.dump(self, indent) # alter as needed
예제 #3
0
파일: template.py 프로젝트: smvv/pybison
 def __init__(self, **kw):
     BisonNode.__init__(self, **kw)
예제 #4
0
파일: template.py 프로젝트: csarn/pybison
 def __init__(self, **kw):
     BisonNode.__init__(self, **kw)