| [news.eclipse.technology.dltk] ASTVisitor.visitGeneral |
Might I suggest that your method visitGeneral have the following
implementation:
public boolean visitGeneral(ASTNode node) throws Exception {
node.traverse(this);
return true;
}
This should make sure that every node in the tree is traversed by default,
even if the visitor does nothing with each node.
Thanks,
Chuck