File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
38
38
{-# LANGUAGE UndecidableInstances #-}
39
39
40
40
module Language.CQL.Schema where
41
+
42
+ import Control.Arrow ((***) )
41
43
import Control.DeepSeq
42
44
import Data.Bifunctor (second )
43
45
import Data.List (nub )
@@ -46,7 +48,7 @@ import Data.Maybe
46
48
import Data.Set as Set
47
49
import Data.Typeable
48
50
import Data.Void
49
- import Control.Arrow ( (***) )
51
+
50
52
import Language.CQL.Collage (Collage (.. ), typeOfCol )
51
53
import Language.CQL.Common
52
54
import Language.CQL.Options
@@ -122,7 +124,7 @@ up1Ctx
122
124
:: (Ord var )
123
125
=> Ctx var (ty + Void )
124
126
-> Ctx (() + var ) (ty + x )
125
- up1Ctx ctx = second absurd <$> Map. mapKeys Right ctx
127
+ up1Ctx = ( second absurd <$> ) . Map. mapKeys Right
126
128
127
129
typesideToSchema :: Typeside var ty sym -> Schema var ty sym Void Void Void
128
130
typesideToSchema ts'' = Schema ts'' Set. empty Map. empty Map. empty Set. empty Set. empty $ \ x _ -> absurd x
You can’t perform that action at this time.
0 commit comments