Skip to content

Commit

Permalink
Method node builder issue with instanceOf #152
Browse files Browse the repository at this point in the history
  • Loading branch information
lehvolk committed Aug 21, 2023
1 parent d65d897 commit 06784c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ class MethodNodeBuilder(

override fun visitJcRawInstanceOfExpr(expr: JcRawInstanceOfExpr) {
expr.operand.accept(this)
currentInsnList.add(TypeInsnNode(Opcodes.INSTANCEOF, expr.typeName.internalDesc))
currentInsnList.add(TypeInsnNode(Opcodes.INSTANCEOF, expr.targetType.internalDesc))
}


Expand Down

0 comments on commit 06784c6

Please sign in to comment.