Home | History | Annotate | Download | only in el

Lines Matching refs:methodName

33     public final String methodName;
35 AMethod(String methodName) {
36 super("method: " + methodName);
37 this.methodName = methodName;
38 this.body = new ABlock(methodName);
39 returnType = new ATypeElement("return type of " + methodName);
40 receiver = new AField("receiver parameter type of " + methodName);
44 super("method: " + method.methodName, method);
45 methodName = method.methodName;
79 && methodName.equals(o.methodName)
91 + body.hashCode() + methodName.hashCode();
109 sb.append(methodName);