We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08acc99 commit 775be9cCopy full SHA for 775be9c
ebu-examples/src/Unembedding/Examples/Forall.hs
@@ -161,7 +161,7 @@ instance L (UE.EnvI Ast) where
161
162
163
toAst :: (forall e. L e => e a) -> Ast '[] a
164
-toAst = UE.runClose
+toAst h = UE.runClose h
165
166
data S a where
167
SO :: Int -> S O
ebu/tests/UnembeddingSpec.hs
@@ -74,10 +74,10 @@ instance HSTLCS (EnvI STLC) (EnvI STLCS) where
74
75
76
fromHOAS :: (forall f. HSTLC f => f a) -> STLC '[] a
77
-fromHOAS = runClose
+fromHOAS h = runClose h
78
79
fromHOASS :: (forall f s. HSTLCS f s => s a) -> STLCS '[] a
80
-fromHOASS = runClose'
+fromHOASS h = runClose' h
81
82
83
sHOAS :: HSTLC f => f ((a -> b -> c) -> (a -> b) -> a -> c)
0 commit comments