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

Lines Matching refs:childTree

2134   ChildTree: IBaseTree;
2140 ChildTree := T as IBaseTree;
2141 if ChildTree.IsNil then // t is an empty node possibly with children
2143 if Assigned(FChildren) and SameObj(FChildren, ChildTree.Children) then
2146 // just add all of childTree's children to this
2147 if Assigned(ChildTree.Children) then
2151 for C in ChildTree.Children do
2162 FChildren := ChildTree.Children;
2174 FChildren.Add(ChildTree);
2175 ChildTree.Parent := Self;
2176 ChildTree.ChildIndex := FChildren.Count - 1;