X-Git-Url: https://ruin.nu/git/?p=proglang.git;a=blobdiff_plain;f=Typecheck.hs;h=e2aa3d7182d61eef64d28b462efb2f3d9efde328;hp=a701b6e85bf92a0e9f0807251e5eecbfa83c7592;hb=08d98a82fabc381a8b101387f39ae5752cfeb314;hpb=8fdc0177fdf518f63819e5b98dd0368fccca6175 diff --git a/Typecheck.hs b/Typecheck.hs index a701b6e..e2aa3d7 100644 --- a/Typecheck.hs +++ b/Typecheck.hs @@ -13,10 +13,6 @@ data State = State {variables::Types,functions::(Map Ident Function),function::I emptyState = State{variables=[empty], functions=(empty), function=(Ident "")} -inList :: Eq a => a -> [a] -> Bool -inList _ [] = False -inList a (x:xs) = if a == x then True else inList a xs - assert :: Monad m => Bool -> String -> m () assert True _ = return () assert False s = fail s @@ -26,10 +22,10 @@ typeCheckExp (BiOpExp e o e') = do t1 <- typeCheckExp e t2 <- typeCheckExp e' assert (t1 == t2) "The parameters for the binary operator aren't equal" - if inList o [Eq,NEq] then return TBool + if elem o [Eq,NEq] then return TBool else do assert (t1 == TInt) "The parameters need to be of type int" - if inList o [Plus,Minus,Times,Div] + if elem o [Plus,Minus,Times,Div] then return TInt else return TBool typeCheckExp (EVar i) = typeCheckVar i