Search in sources :

Example 6 with Expression

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(")");
}
Also used : Expression(org.neo4j.codegen.Expression)

Aggregations

Expression (org.neo4j.codegen.Expression)6 Label (org.objectweb.asm.Label)2 HashMap (java.util.HashMap)1 Map (java.util.Map)1 FieldReference (org.neo4j.codegen.FieldReference)1 MethodVisitor (org.objectweb.asm.MethodVisitor)1