Woooo isEmpty
authorpimjager <pim@pimjager.nl>
Fri, 20 May 2016 11:35:39 +0000 (13:35 +0200)
committerpimjager <pim@pimjager.nl>
Fri, 20 May 2016 11:35:39 +0000 (13:35 +0200)
examples/codeGen.spl
sem.icl

index 4062fb6..e5d938b 100644 (file)
@@ -36,6 +36,8 @@ main() {
     (Bool, Int) z = (True, 2);
        var y = z.fst;
     var x = (True, 5) : (False,0) : [];
+    var sdaf = isE(x1);
+    var z = isEmpty(x1);
     x.hd.snd = 8;
     return;
 }
diff --git a/sem.icl b/sem.icl
index 833d543..0ffcdd2 100644 (file)
--- a/sem.icl
+++ b/sem.icl
@@ -50,7 +50,7 @@ variableStream = map toString [1..]
 
 defaultGamma :: Gamma //includes all default functions
 defaultGamma = extend "print" (Forall ["a"] ((IdType "a") ->> VoidType))
-                $ extend "isEmpty" (Forall ["a"] (ListType (IdType "a") ->> BoolType))
+                $ extend "isEmpty" (Forall ["a"] ((ListType (IdType "a")) ->> BoolType))
                 $ extend "read" (Forall [] (IntType ->> (ListType CharType)))
                 zero
 
@@ -178,7 +178,6 @@ generalize :: Type -> Typing Scheme
 generalize t = gamma >>= \g-> pure $ Forall (difference (ftv t) (ftv g)) t
 
 lookup :: String -> Typing Type 
-lookup "isEmpty" = ListType <$> fresh
 lookup k = gamma >>= \g-> case 'Map'.member k g of
     False = liftT (Left $ UndeclaredVariableError zero k)
     True = instantiate $ 'Map'.find k g