fix: improve disassemble view for java-input

This commit is contained in:
Skylot
2021-08-22 16:53:54 +01:00
parent 9ea3f0f240
commit 1ce3fc972a
9 changed files with 115 additions and 38 deletions
@@ -33,4 +33,9 @@ public class CallSite implements ICallSite {
public List<EncodedValue> getValues() {
return values;
}
@Override
public String toString() {
return "CallSite{" + values + '}';
}
}
@@ -17,6 +17,8 @@ public interface InsnData {
Opcode getOpcode();
String getOpcodeMnemonic();
byte[] getByteCode();
InsnIndexType getIndexType();