Home | History | Annotate | Download | only in antlr3

Lines Matching defs:BaseTree

663 # \- BaseTree
671 class BaseTree(Tree):
682 # BaseTree is abstract, no need to complain about not implemented abstract
688 Create a new node from an existing node does nothing for BaseTree
867 """BaseTree doesn't track child indexes."""
873 """BaseTree doesn't track child indexes."""
879 """BaseTree doesn't track parent pointers."""
884 """BaseTree doesn't track parent pointers."""
1188 # \- BaseTree
1199 class CommonTree(BaseTree):
1206 fields, it's easy to cut them out in your own BaseTree subclass.
1211 BaseTree.__init__(self)
1626 # \- BaseTree