Skip to content

Commit

Permalink
Fix compilation of ShadowedIdentifiersLint
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed May 3, 2024
1 parent 6cfbb1d commit 2b61d26
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,17 @@
* If shadowing is detected, a warning is attached to the IR.
*/
public final class ShadowedIdentifiersLint implements IRPass {
public static final ShadowedIdentifiersLint INSTANCE = new ShadowedIdentifiersLint();
private UUID uuid;

@Override
public UUID key() {
return null;
return uuid;
}

@Override
public void org$enso$compiler$pass$IRPass$_setter_$key_$eq(UUID v) {
this.uuid = v;
}

@Override
Expand Down

0 comments on commit 2b61d26

Please sign in to comment.