Skip to content

Commit

Permalink
feat(objectionary#226): add IRETURN handler to decompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed May 16, 2024
1 parent 0545486 commit 1240dd5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ public RouterHandler(final boolean counting) {
new MapEntry<>(Opcodes.LDC, new LdcHandler()),
new MapEntry<>(Opcodes.POP, new PopHandler()),
new MapEntry<>(Opcodes.RETURN, new ReturnHandler(counting)),
new MapEntry<>(Opcodes.IRETURN, new ReturnHandler(counting)),
new MapEntry<>(JeoLabel.LABEL_OPCODE, new LabelHandler()),
new MapEntry<>(
RouterHandler.UNIMPLEMENTED, new UnimplementedHandler(counting)
Expand Down

0 comments on commit 1240dd5

Please sign in to comment.