Skip to content

Commit

Permalink
(WIP) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Apr 6, 2021
1 parent bd02c45 commit e166379
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -42,7 +42,8 @@ private static class Matcher extends AbstractMatcher {
public void match(final AbstractInsnNode start,
final IFilterOutput output) {

if (Opcodes.ASTORE != start.getOpcode()) {
if (start.getOpcode() != /* ECJ */ Opcodes.ASTORE
&& start.getOpcode() != /* Kotlin */ Opcodes.ALOAD) {
return;
}
cursor = start;
Expand Down

0 comments on commit e166379

Please sign in to comment.