I have a rule
((cns=IDENT '->')* IDENT | (cns=IDENT '->')* 'STOP') -> ^(PREFIX ^(EVENTS $cns*) ^(ENDS $procn? STOP?) )
This will work correctly if cns=IDENT is replaced by 'cns+=IDENT'. In that case how can I access cns as $cns.text.
|
I have a rule
This will work correctly if |
||||
|
|
|
To store all IDENTs and not only last one Now if you explore parser Java code generated by ANTLR Now this list can be iterated through using a loop and you can do anything with the items using code like
This item is of Object type though and can be Casted(is this correct terminology?) to |
||||
|
|