1 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
5 import Data.Map.Strict (Map)
6 import Data.Proxy (Proxy(..))
7 import Data.Text as Text
8 import qualified Data.Map.Strict as Map
10 import Language.Symantic.Lib
11 import Testing.Compiling
24 (==>) = readTe @() @SS
27 hunits = testGroup "Map"
28 [ "Map.fromList (zipWith (,) [1, 2, 3] ['a', 'b', 'c'])" ==> Right
29 ( tyMap tyInteger tyChar
30 , Map.fromList [(1, 'a'), (2, 'b'), (3, 'c')]
31 , "Map.fromList (zipWith (\\x0 -> (\\x1 -> (x0, x1))) (1 : 2 : 3 : []) ('a' : 'b' : 'c' : []))" )
34 , " (\\(k:Integer) (v:Char) (acc:(Integer,[Char])) ->"
35 , " (k + fst acc, v : snd acc))"
37 , " (Map.fromList (zipWith (,) [1, 2, 3] ['a', 'b', 'c']))"
39 ( tyInteger `tyTuple2` tyString
41 , "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' : [])))" )