423424425426427428429
} return null; } public Void visitIfElement(GxpNamespace.GxpElement node) { throw new UnexpectedNodeException(node); }
427428429430431432433
public Void visitIfElement(GxpNamespace.GxpElement node) { throw new UnexpectedNodeException(node); } public Void visitElifElement(GxpNamespace.GxpElement node) { throw new UnexpectedNodeException(node); }
431432433434435436437
public Void visitElifElement(GxpNamespace.GxpElement node) { throw new UnexpectedNodeException(node); } public Void visitElseElement(GxpNamespace.GxpElement node) { throw new UnexpectedNodeException(node); }
696697698699700701702
extends DefaultingExpressionVisitor<String> implements CallVisitor<String> { @Override public String defaultVisitExpression(Expression value) { throw new UnexpectedNodeException(value); }
756757758759760761762
return call.acceptCallVisitor(this); } @Override public String visitBoundCall(BoundCall call) { throw new UnexpectedNodeException(call); }
761762763764765766767
throw new UnexpectedNodeException(call); } @Override public String visitUnboundCall(UnboundCall call) { throw new UnexpectedNodeException(call); }
780781782783784785786
938939940941942943944
public String visitCall(Call value) { return value.acceptCallVisitor(this); } public String visitBoundCall(BoundCall call) { throw new UnexpectedNodeException(call); }
942943944945946947948
public String visitBoundCall(BoundCall call) { throw new UnexpectedNodeException(call); } public String visitUnboundCall(UnboundCall call) { throw new UnexpectedNodeException(call); }
311312313314315316317
return result; } public Expression visitUnboundCall(UnboundCall call) { throw new UnexpectedNodeException(call); }