示例#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)