1 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
5 import Data.Char (Char)
6 import Data.Either (Either(..))
8 import Data.Monoid (Monoid)
9 import Data.Map.Strict (Map)
10 import Data.Proxy (Proxy(..))
11 import Data.Text as Text
12 import Prelude (Integer, Num)
13 import qualified Data.Map.Strict as Map
15 import Language.Symantic.Lib
16 import Testing.Compiling
29 (==>) = readTe @() @SS
32 hunits = testGroup "Map"
33 [ "Map.fromList (zipWith (,) [1, 2, 3] ['a', 'b', 'c'])" ==> Right
34 ( tyMap tyInteger tyChar
35 , Map.fromList [(1, 'a'), (2, 'b'), (3, 'c')]
36 , "Map.fromList (zipWith (\\x0 -> (\\x1 -> (x0, x1))) (1 : 2 : 3 : []) ('a' : 'b' : 'c' : []))" )
39 , " (\\(k:Integer) (v:Char) (acc:(Integer,[Char])) ->"
40 , " (k + fst acc, v : snd acc))"
42 , " (Map.fromList (zipWith (,) [1, 2, 3] ['a', 'b', 'c']))"
44 ( tyInteger `tyTuple2` tyString
46 , "Map.foldrWithKey (\\x0 -> (\\x1 -> (\\x2 -> (x0 + fst x2, x1 : snd x2)))) (0, []) (Map.fromList (zipWith (\\x0 -> (\\x1 -> (x0, x1))) (1 : 2 : 3 : []) ('a' : 'b' : 'c' : [])))" )