# Check the consitency of AST
class ASTValidationVisitor
super Visitor
redef fun visit(node)
do
node.accept_ast_validation(self)
end
private var path = new CircularArray[ANode]
private var seen = new HashSet[ANode]
end
src/astbuilder.nit:868,1--877,3