this should be fairly simple, but I cannot find the relevant information in the documentation.
I have an sparql query, and I have an antlr grammar that produces an AST for it, I would like to produce a different sparql query changing only a part of it, corresponding to a specific rule in the grammar and thus a specific node in the AST.
I want to remove that subtree (or text) from the tree, transform it into another tree (or text), put it back to the original (greater) tree (or text) and obtain the full text for the new query, which in general equals to the original one. I hope you don't need the details about the transformation that has to be carried because that is not any simple or short to explain.
In (kind of) pseudocode it would be something like:
prog returns [String res]
: ^([^nodeICare] e*) {($res += $e.text;)*}
| ^(nodeICare e) {$res += (transformer.transform($e)).text;}
There should be some simple way to do this, shouldn't it?
Thank you very much.