782783784785786787788
@Override public Lang visit(ASTLang node, Object data) throws VisitorException { return new Lang((ValueExpr)super.visit(node, data)); }
750751752753754755756
@Override public Lang visit(ASTLang node, Object data) throws VisitorException { ValueExpr arg = (ValueExpr)node.jjtGetChild(0).jjtAccept(this, null); return new Lang(arg); }
787788789790791792793
752753754755756757758