getParamCount removed

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@532 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 4bf084d477
commit 1aa1cddc0b
  1. 14
      jode/jode/decompiler/MethodAnalyzer.java

@ -54,7 +54,7 @@ public class MethodAnalyzer implements Analyzer {
AttributeInfo codeattr = minfo.findAttribute("Code"); AttributeInfo codeattr = minfo.findAttribute("Code");
if (codeattr != null) { if (codeattr != null) {
code = new CodeAnalyzer(this, codeattr, env); code = new CodeAnalyzer(this, minfo, codeattr, env);
} }
AttributeInfo excattr = minfo.findAttribute("Exceptions"); AttributeInfo excattr = minfo.findAttribute("Exceptions");
@ -109,14 +109,6 @@ public class MethodAnalyzer implements Analyzer {
return synth.type == SyntheticAnalyzer.GETCLASS; return synth.type == SyntheticAnalyzer.GETCLASS;
} }
public int getParamCount() {
int count = isStatic() ? 0 : 1;
Type[] paramTypes = methodType.getParameterTypes();
for (int i=0; i< paramTypes.length; i++)
count += paramTypes[i].stackSize();
return count;
}
public Type getReturnType() { public Type getReturnType() {
return methodType.getReturnType(); return methodType.getReturnType();
} }
@ -139,7 +131,7 @@ public class MethodAnalyzer implements Analyzer {
Type[] paramTypes = methodType.getParameterTypes(); Type[] paramTypes = methodType.getParameterTypes();
for (int i=0; i< paramTypes.length; i++) { for (int i=0; i< paramTypes.length; i++) {
code.getParamInfo(offset).setType(paramTypes[i]); code.getParamInfo(offset).setType(paramTypes[i]);
offset += paramTypes[i].stackSize(); offset++;
} }
for (int i= 0; i< exceptions.length; i++) for (int i= 0; i< exceptions.length; i++)
@ -223,7 +215,7 @@ public class MethodAnalyzer implements Analyzer {
} else } else
li = code.getParamInfo(offset); li = code.getParamInfo(offset);
writer.print(li.getType().toString()+" "+li.getName()); writer.print(li.getType().toString()+" "+li.getName());
offset += paramTypes[i].stackSize(); offset++;
} }
writer.print(")"); writer.print(")");
} }

Loading…
Cancel
Save