diff options
author | Marvin Borner | 2023-02-20 22:02:37 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-20 22:02:37 +0100 |
commit | 7a9768dae668d2e08cefebaf39911a9b3f2366cf (patch) | |
tree | a2b4836b8c7891d2e74aca8d628e1f08c1b1e246 /src/Typer.hs | |
parent | 8e3a7a0d5b0096a0e7bea934fa55ee910a7a3f0a (diff) |
Removed typechecking
Well, it's unnecessary complexity :D
I might add checking again in the future, but you'll need to typecheck in
your head for now.
Diffstat (limited to 'src/Typer.hs')
-rw-r--r-- | src/Typer.hs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/Typer.hs b/src/Typer.hs deleted file mode 100644 index 0de01dd..0000000 --- a/src/Typer.hs +++ /dev/null @@ -1,45 +0,0 @@ -module Typer - ( typeCheck - ) where - -import Helper - --- removes ys from start of xs -dropList :: (Eq a) => [a] -> [a] -> [a] -dropList [] _ = [] -dropList xs [] = xs -dropList e@(x : xs) (y : ys) | x == y = dropList xs ys - | otherwise = e - -typeMatches :: Type -> Type -> Bool -typeMatches AnyType _ = True -typeMatches _ AnyType = True -typeMatches a b = a == b - -typeApply :: Type -> Type -> Type -typeApply (FunctionType ts1) (FunctionType ts2) = - FunctionType $ dropList ts1 ts2 -typeApply AnyType _ = AnyType -typeApply _ AnyType = AnyType -typeApply a b = error "invalid" - -typeImply :: Expression -> Type -typeImply (Bruijn _ ) = AnyType -typeImply (Abstraction e ) = typeImply e -typeImply (Application e1 e2) = typeApply (typeImply e1) (typeImply e2) -typeImply (TypedExpression t _ ) = t -typeImply _ = error "invalid" - -typeCheck :: Expression -> Type -> Failable Expression -typeCheck e@(Bruijn _) _ = Right e -typeCheck e@(Function _) _ = error "invalid" -typeCheck e@(Abstraction e') (FunctionType (t : ts)) = - typeCheck e' (FunctionType ts) >>= pure (Right e) -typeCheck e@(Abstraction _) _ = Right e -typeCheck e@(Application e1 e2) t - | typeMatches (typeImply e) t = Right e - | otherwise = Left $ TypeError [(typeImply e1), (typeImply e2), t] -typeCheck e@(MixfixChain _) _ = Right e -typeCheck e@(Prefix _ _ ) _ = Right e -typeCheck (TypedExpression t' e) t | typeMatches t' t = Right e - | otherwise = Left $ TypeError [t', t] |