Home | History | Annotate | Download | only in antlr3

Lines Matching refs:child

257         # walk the tree and emit create and add child events
265 """^(A B C): emit create A, create B, add child, ..."""
268 child = self.adaptor.getChild(t, i)
269 self.simulateTreeConstruction(child)
270 self.dbg.addChild(t, child)
289 def addChild(self, t, child):
290 if isinstance(child, Token):
291 n = self.createWithPayload(child)
295 if t is None or child is None:
298 self.adaptor.addChild(t, child)
299 self.dbg.addChild(t, child)
355 def setChild(self, t, i, child):
356 self.adaptor.setChild(t, i, child)
707 def addChild(self, root, child):
708 """Make childID a child of rootID.
809 def addChild(self, root, child):
812 self.adaptor.getUniqueID(child)))
1095 def addChild(self, root, child):
1098 self.adaptor.getUniqueID(child)))