430431432433434435436437
return null; } public Void visitLang(LangOperator lang) { LinkedHashMap<Attribute, Node> avo = updateAVPVariables(lang.getValue()); expression = new LangOperator(avo); return null; }
128129130131132133134135136137
@Override public void caseALangBuiltincall(ALangBuiltincall node) { node.getBracketedExpression().apply(this); try { this.expression = new LangOperator(getSingleAvp()); } catch (ParserException e) { this.exception = e; } }