Home | History | Annotate | Download | only in delegation

Lines Matching defs:capture

21         def capture(t)
22 @didr_master.capture(t)
25 a : B { capture("S.a") } ;
53 def capture(t)
54 @master_2.capture(t)
57 a[x] returns [y] : B {capture("S.a"); $y="1000";} ;
66 s : label=a[3] {capture($label.y)} ;
84 def capture(t)
85 @master_3.capture(t)
89 capture("whatevs")
118 def capture(t)
119 @master_4.capture(t)
122 a : b {capture("S.a")} ;
131 def capture(t)
132 @master_4.capture(t)
135 a : B {capture("T.a")} ;
162 def capture(t)
163 @master_5.capture(t)
166 x : A {capture("S.x ")} ;
175 def capture(t)
176 @master_5.capture(t)
179 y : A {capture("T.y")} ;
209 def capture(t)
210 @master_6.capture(t)
213 a : b {capture("S.a")} ;
237 def capture(t)
238 @master_7.capture(t)
241 A : 'a' {capture("S.A ")} ;
256 lexer.map { |tk| lexer.capture( tk.text ) }
265 def capture(t)
266 @master_8.capture(t)
269 A : 'a' {capture("S.A")} ;
276 A : 'a' {capture("M.A ")} ;
281 lexer.map { |tk| lexer.capture( tk.text ) }
290 def capture(t)
291 @master_9.capture(t)
295 c : ('c' 'b')=> 'c' 'b' { capture("(cb)") }
305 | ('b' 'c')=> 'b' {capture("(bc)")}