Skip to content

Commit

Permalink
(WIP) fix: filter should verify name in invokestatic
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Dec 17, 2020
1 parent 9830335 commit ab66913
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -43,6 +43,9 @@ private void match(final MethodNode methodNode,
if (!m.owner.endsWith("$DefaultImpls")) {
return;
}
if (!m.name.equals(methodNode.name)) {
return;
}
nextIs(Type.getReturnType(methodNode.desc)
.getOpcode(Opcodes.IRETURN));
if (cursor == null) {
Expand Down

0 comments on commit ab66913

Please sign in to comment.