fix: update raung to fix stack frame issue (#1932)

This commit is contained in:
Skylot
2023-07-05 19:43:24 +01:00
parent 2d65594383
commit 9b75a4f199
3 changed files with 9 additions and 3 deletions
@@ -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() {
+1 -1
View File
@@ -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"))
}
+1 -1
View File
@@ -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')
}