I use Xtext to determine my DSL. Xtext generates a parser that allows me to navigate the EMF model of my input DSL. I would like to translate this EMF model into another tree. To make this translation, I need to go through a tree. But I could not find the visitor class for the EMF model created by Xtext. The closest I found is the Switch class, which visits a single node. I can go through the EMF model myself and call the Switch class on every node I visit. But, I wonder if there is visitor functionality in Xtext that implements model bypass.
source share