Skip to content

Commit c0616ca

Browse files
authored
Method node builder issue with instanceOf #152 (#153)
1 parent d65d897 commit c0616ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jacodb-core/src/main/kotlin/org/jacodb/impl/cfg/MethodNodeBuilder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ class MethodNodeBuilder(
539539

540540
override fun visitJcRawInstanceOfExpr(expr: JcRawInstanceOfExpr) {
541541
expr.operand.accept(this)
542-
currentInsnList.add(TypeInsnNode(Opcodes.INSTANCEOF, expr.typeName.internalDesc))
542+
currentInsnList.add(TypeInsnNode(Opcodes.INSTANCEOF, expr.targetType.internalDesc))
543543
}
544544

545545

0 commit comments

Comments
 (0)