Skip to content

Commit

Permalink
Bugfix for eclipse-jdt#518 (Setting a breakpoint inside lambda with o…
Browse files Browse the repository at this point in the history
…bject).
  • Loading branch information
Christian authored and Christian committed Oct 1, 2024
1 parent 6218bff commit ffbaa4f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,8 @@ public boolean visit(LambdaExpression node) {
body.accept(this);
} else if (body instanceof MethodInvocation) {
body.accept(this);
} else if (body instanceof ClassInstanceCreation) {
body.accept(this);
}
}
return false;
Expand Down

0 comments on commit ffbaa4f

Please sign in to comment.