visit(visitor, true, true, true) leads to error (no visit done at all)
maxleiko opened this issue · 1 comments
maxleiko commented
var model : ContainerRoot = factory.createContainerRoot()
// ... assume you have several elements in your model
model.visit(myVisitor, true, true, true)
// no visit done except for level 0
model.visit(myVisitor, true, true, false)
// works fine for all levels
dukeboard commented
seems to be solved in the 2.4.2-SNAPSHOT , can you check on your side ?