We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
throw null
1 parent b170133 commit f2818d6Copy full SHA for f2818d6
jacodb-core/src/main/kotlin/org/jacodb/impl/cfg/MethodNodeBuilder.kt
@@ -267,7 +267,7 @@ class MethodNodeBuilder(
267
}
268
269
override fun visitJcRawThrowInst(inst: JcRawThrowInst) {
270
- currentInsnList.add(loadValue(inst.throwable))
+ inst.throwable.accept(this)
271
currentInsnList.add(InsnNode(Opcodes.ATHROW))
272
updateStackInfo(-stackSize)
273
0 commit comments