Skip to content

Commit

Permalink
[Kotlin] Fix infinite loop, stack overflow, or whatever it is KInvoca…
Browse files Browse the repository at this point in the history
…tionExprent broke
  • Loading branch information
sschr15 committed Aug 29, 2024
1 parent 4320d60 commit d797611
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public void setShadowStaticBase(boolean shadowStaticBase) {

@Override
public Exprent copy() {
return new KInvocationExprent((InvocationExprent) super.copy());
return new KInvocationExprent(this);
}
}

0 comments on commit d797611

Please sign in to comment.