Skip to content

Commit

Permalink
* Part 2 of fix for
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanth-sankaran committed Mar 5, 2024
1 parent 885f078 commit 85be6d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void setConstant(Constant constant) {
@Override
public String toString() {
StringBuilder output = new StringBuilder(10);
ASTNode.printModifiers(this.modifiers, output);
ASTNode.printModifiers(this.modifiers & ~ExtraCompilerModifiers.AccOutOfFlowScope, output); // so pattern bindings don't show up as sealed (!)
if ((this.modifiers & ExtraCompilerModifiers.AccUnresolved) != 0) {
output.append("[unresolved] "); //$NON-NLS-1$
}
Expand Down

0 comments on commit 85be6d2

Please sign in to comment.