fix: update raung to fix stack frame issue (#1932)
This commit is contained in:
@@ -811,7 +811,13 @@ public class ClassNode extends NotificationAttrNode
|
||||
}
|
||||
sb.append(String.format("###### Class %s (%s)", getFullName(), getRawName()));
|
||||
sb.append(ICodeWriter.NL);
|
||||
sb.append(clsData.getDisassembledCode());
|
||||
try {
|
||||
sb.append(clsData.getDisassembledCode());
|
||||
} catch (Throwable e) {
|
||||
sb.append("Failed to disassemble class:");
|
||||
sb.append(ICodeWriter.NL);
|
||||
sb.append(Utils.getStackTrace(e));
|
||||
}
|
||||
}
|
||||
|
||||
public IClassData getClsData() {
|
||||
|
||||
@@ -6,7 +6,7 @@ dependencies {
|
||||
api(project(":jadx-core"))
|
||||
|
||||
// show bytecode disassemble
|
||||
implementation 'io.github.skylot:raung-disasm:0.0.3'
|
||||
implementation 'io.github.skylot:raung-disasm:0.1.0'
|
||||
|
||||
testImplementation(project(":jadx-core"))
|
||||
}
|
||||
|
||||
@@ -7,5 +7,5 @@ dependencies {
|
||||
|
||||
implementation(project(":jadx-plugins:jadx-java-input"))
|
||||
|
||||
implementation('io.github.skylot:raung-asm:0.0.3')
|
||||
implementation('io.github.skylot:raung-asm:0.1.0')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user