use of org.neo4j.codegen.Expression in project neo4j by neo4j.
the class MethodSourceWriter method arglist.
private void arglist(Expression[] arguments) {
append("(");
String sep = " ";
for (Expression argument : arguments) {
append(sep);
argument.accept(this);
sep = ", ";
}
if (sep.length() > 1) {
append(" ");
}
append(")");
}
Aggregations