public class TextConverter
extends de.fau.cs.osr.ptk.common.AstVisitor
n
are
dispatch(n)
- visit node n
,iterate(n)
- visit the children of node
n
,map(n)
- visit the children of node n
and gather the return values of the visit()
calls in a list,mapInPlace(n)
- visit the children of node
n
and replace each child node c
with the return
value of the call to visit(c)
.Constructor and Description |
---|
TextConverter() |
Modifier and Type | Method and Description |
---|---|
void |
enableMapping(boolean enableMapping) |
Map<Integer,xtc.tree.Location> |
getMapping()
Return a mapping from converted text positions to original text positions.
|