436437438439440441442443
return null; } public Void visitStr(StrOperator str) { LinkedHashMap<Attribute, Node> avo = updateAVPVariables(str.getValue()); expression = new StrOperator(avo); return null; }
138139140141142143144145146147
@Override public void caseAStrBuiltincall(AStrBuiltincall node) { try { node.getBracketedExpression().apply(this); this.expression = new StrOperator(getSingleAvp()); } catch (ParserException e) { this.exception = e; } }