File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
unison-runtime/src/Unison/Runtime Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ import Unison.Reference
5353 ( Reference ,
5454 Reference' (Builtin ),
5555 )
56- import Unison.Referent (Referent , pattern Ref , pattern Con )
56+ import Unison.Referent (Referent , pattern Con , pattern Ref )
5757import Unison.Runtime.ANF as ANF
5858 ( Cacheability (.. ),
5959 Code (.. ),
@@ -1429,10 +1429,11 @@ canonicalizeReference isTy r = StateT \st@(RS _ _ canon tys tms) ->
14291429 C. Novel canon ->
14301430 (r,)
14311431 <$> evaluate
1432- st { _canon = canon,
1433- _tys = if isTy then r : tys else tys,
1434- _tms = if isTy then tms else r : tms
1435- }
1432+ st
1433+ { _canon = canon,
1434+ _tys = if isTy then r : tys else tys,
1435+ _tms = if isTy then tms else r : tms
1436+ }
14361437
14371438canonicalizeReferent :: Referent -> Reflect Referent
14381439canonicalizeReferent (Ref r) = Ref <$> canonicalizeReference False r
You can’t perform that action at this time.
0 commit comments