Skip to content

Commit

Permalink
Method node builder issue with instanceOf #152 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
lehvolk authored Aug 21, 2023
1 parent d65d897 commit c0616ca
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 c0616ca

Please sign in to comment.