Skip to content

Commit

Permalink
(WIP) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Apr 5, 2021
1 parent bd02c45 commit dee6cad
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 (/* ECJ */ Opcodes.ASTORE != start.getOpcode()
&& /* Kotlin */ Opcodes.ALOAD != start.getOpcode()) {
return;
}
cursor = start;
Expand Down

0 comments on commit dee6cad

Please sign in to comment.