Skip to content

Commit

Permalink
Merge pull request unisonweb#5474 from unisonweb/cp/untracked-ref
Browse files Browse the repository at this point in the history
Revert Ref.read Ref.write to untracked  because they're shared between IO and Scope interfaces.
  • Loading branch information
ChrisPenner authored Dec 3, 2024
2 parents d0b3720 + cb69a72 commit 67575ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unison-runtime/src/Unison/Runtime/Builtin.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1824,8 +1824,8 @@ builtinLookup =
("Value.validateSandboxed", (Tracked, value'sandbox)),
("sandboxLinks", (Tracked, sandbox'links)),
("IO.tryEval", (Tracked, try'eval)),
("Ref.read", (Tracked, ref'read)),
("Ref.write", (Tracked, ref'write)),
("Ref.read", (Untracked, ref'read)),
("Ref.write", (Untracked, ref'write)),
("Ref.cas", (Tracked, ref'cas)),
("Ref.Ticket.read", (Tracked, ref'ticket'read)),
("Ref.readForCas", (Tracked, ref'readForCas)),
Expand Down

0 comments on commit 67575ee

Please sign in to comment.