|
|
|
@ -58,20 +58,6 @@ public class MethodType extends Type { |
|
|
|
|
returnType = Type.tType(signature.substring(index+1)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public MethodType(Class paramT[], Class returnT) { |
|
|
|
|
super(TC_METHOD); |
|
|
|
|
StringBuffer sig = new StringBuffer("("); |
|
|
|
|
parameterTypes = new Type[paramT.length]; |
|
|
|
|
for (int i=0; i< paramT.length; i++) { |
|
|
|
|
parameterTypes[i] = Type.tType(paramT[i]); |
|
|
|
|
sig.append(parameterTypes[i].getTypeSignature()); |
|
|
|
|
} |
|
|
|
|
sig.append(")"); |
|
|
|
|
returnType = Type.tType(returnT); |
|
|
|
|
sig.append(returnType.getTypeSignature()); |
|
|
|
|
signature = sig.toString(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public final int stackSize() { |
|
|
|
|
int size = returnType.stackSize(); |
|
|
|
|
for (int i=0; i<parameterTypes.length; i++) |
|
|
|
|