|
|
@ -18,7 +18,7 @@ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
package jode.bytecode; |
|
|
|
package jode.bytecode; |
|
|
|
import jode.GlobalOptions/*XXX*/; |
|
|
|
import jode.GlobalOptions; |
|
|
|
import java.io.DataInputStream; |
|
|
|
import java.io.DataInputStream; |
|
|
|
import java.io.DataOutputStream; |
|
|
|
import java.io.DataOutputStream; |
|
|
|
import java.io.ByteArrayInputStream; |
|
|
|
import java.io.ByteArrayInputStream; |
|
|
@ -1081,6 +1081,10 @@ public class BytecodeInfo extends BinaryInfo implements Opcodes { |
|
|
|
return maxLocals; |
|
|
|
return maxLocals; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MethodInfo getMethodInfo() { |
|
|
|
|
|
|
|
return methodInfo; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Instruction getFirstInstr() { |
|
|
|
public Instruction getFirstInstr() { |
|
|
|
return firstInstr; |
|
|
|
return firstInstr; |
|
|
|
} |
|
|
|
} |
|
|
|