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

Lines Matching full:102

65 			// ^(101 ^(102 103) 104)
67 r0.AddChild(new CommonTree(new CommonToken(102)));
78 // ^(nil 101 102 103)
82 r0.AddChild(c1 = new CommonTree(new CommonToken(102)));
98 // Add child ^(nil 101 102 103) to root 5
99 // should pull 101 102 103 directly to become 5's child list
106 r0.AddChild(c1 = new CommonTree(new CommonToken(102)));
125 // Add child ^(nil 101 102 103) to root ^(5 6)
126 // should add 101 102 103 to end of 5's child list
134 r0.AddChild(c1 = new CommonTree(new CommonToken(102)));
153 // ^(101 ^(102 103 ^(106 107) ) 104 105)
155 CommonTree r1 = new CommonTree(new CommonToken(102));
174 // 5 becomes new root of ^(nil 101 102 103)
179 oldRoot.AddChild(new CommonTree(new CommonToken(102)));
190 // 5 becomes new root of ^(101 102 103)
194 oldRoot.AddChild(new CommonTree(new CommonToken(102)));
205 // ^(nil 5) becomes new root of ^(nil 101 102 103)
211 oldRoot.AddChild(new CommonTree(new CommonToken(102)));
222 // ^(nil 5) becomes new root of ^(101 102 103)
227 oldRoot.AddChild(new CommonTree(new CommonToken(102)));