]> ruin.nu Git - proglang.git/commitdiff
some restructuring
authorMichael Andreen <harv@ruin.nu>
Mon, 27 Feb 2006 19:07:16 +0000 (19:07 +0000)
committerMichael Andreen <harv@ruin.nu>
Mon, 27 Feb 2006 19:07:16 +0000 (19:07 +0000)
Typecheck.hs

index ec40b1f0bc7dc8e249e6e95b738ac3a85bbb2077..2414203d7d81441d89080f3c3dc8d5486f140600 100644 (file)
@@ -16,13 +16,12 @@ typeCheckExp :: (MonadState Types m) => Exp -> m Type
 typeCheckExp (BiOpExp e o e') = do
        t1 <- typeCheckExp e
        t2 <- typeCheckExp e'
-       if not(t1 == t2) then fail "" 
-               else case inList o [Eq,NEq] of
-                       True -> return TBool
-                       False -> if not(t1 == TInt) then fail "" 
-                               else case inList o [Plus,Minus,Times,Div] of
-                                       True -> return TInt
-                                       False -> return TBool
+       if not(t1 == t2) then fail "The parameters for the binary operator aren't equal" 
+               else if inList o [Eq,NEq] then return TBool
+                       else if not(t1 == TInt) then fail "The parameters need to be of type int" 
+                               else if inList o [Plus,Minus,Times,Div]
+                                       then return TInt
+                                       else return TBool
 typeCheckExp (EVar i) = typeCheckVar i
 typeCheckExp (EAss i e) = do
        a <- typeCheckVar i