Hi,
I want to combine tokens when generating the AST.
For example, for a rule like this:
namespaceSpec: (ID) ('.' ID)*;
i want to generate a tree rule that returns a new tree with only one
ID token, that is the result of all ID and '.' concatenation. Is there
a way to do this?
Thanks.