Home | History | Annotate | Download | only in Antlr3.Runtime.Debug

Lines Matching refs:child

90             // walk the tree and emit create and add child events
97 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
104 object child = adaptor.GetChild( t, i );
105 SimulateTreeConstruction( child );
106 dbg.AddChild( t, child );
150 public virtual void AddChild( object t, object child )
152 if ( t == null || child == null )
156 adaptor.AddChild( t, child );
157 dbg.AddChild( t, child );
172 public virtual void AddChild( object t, IToken child )
174 object n = this.Create( child );
265 public virtual void SetChild( object t, int i, object child )
267 adaptor.SetChild( t, i, child );