Mooiere puurdere lambda-calculus. Is chill straks met hogere orde functies (denken we)
Staat mooie shizzle zoals in Haskell toe (f :: a -> a, g :: a -> a, f = g)
Simpeler om te parsen
-Con: wellicht kut met code generatie, wie weet.
\ No newline at end of file
+Con: wellicht kut met code generatie, wie weet.
+
+--
+Functies en variabelen delen 1 namespace.
+Dat is met het oog op hogere orde functies, dan kan een parameter voor een functie een andere
+functie zijn, of een variabele en als die 2 aparte namespaces hebben is dat moeilijk onduidelijk /
+praktisch onmogelijke met type inteference
\ No newline at end of file
:: Gamma :== 'Map'.Map String Type
:: Env a :== (State Gamma (Either SemError a))
+get = state $ \s -> (s,s)
+
+putIdent :: String Type -> Env Void
+putIdent i t = gets ('Map'.get i) >>= \mt -> case mt of
+ Nothing = pure <$> modify ('Map'.put i t)
+ Just t2 = unify t t2 >>= \r -> case r of
+ Left e = pure $ Left e
+ Right t3 = pure <$> modify ('Map'.put i t3)
+
instance toString SemError where
toString (ParseError p e) = concat [
toString p,"SemError: ParseError: ", e]
// //TODO ident in de environment
// Right e = Right $ pure vd
//
-//typeExpr :: Expr -> Env Type
-//typeExpr (IntExpr _ _) = Right $ pure IntType
-//typeExpr (CharExpr _ _) = Right $ pure CharType
-//typeExpr (BoolExpr _ _) = Right $ pure BoolType
-//typeExpr (Op1Expr p UnNegation expr) = undef//typeExpr expr
-//// >>= \exprtype->case exprtype of
-//// Right BoolType = Right $ pure BoolType
-//// t = Left $ UnifyError p BoolType exprtype
-//typeExpr (Op1Expr p UnMinus expr) = undef// typeExpr expr
-//// >>= \exprtype->case exprtype of
-//// IntType = Right $ pure IntType
-//// t = Left $ UnifyError p IntType exprtype
-//// typeExpr (Op2Expr Pos Expr Op2 Expr) = undef
-////typeExpr (FunExpr Pos FunCall
-////typeExpr (EmptyListExpr Pos
-////typeExpr (TupleExpr Pos (Expr, Expr)
-////typeExpr (VarExpr Pos VarDef) = undef
+typeExpr :: Expr -> Env Type
+typeExpr (IntExpr _ _) = pure $ Right IntType
+typeExpr (CharExpr _ _) = pure $ Right CharType
+typeExpr (BoolExpr _ _) = pure $ Right BoolType
+typeExpr (Op1Expr p UnNegation expr) = typeExpr expr
+ >>= \exprtype->case exprtype of
+ Left e = pure $ Left e
+ Right BoolType = pure $ Right BoolType
+ Right (IdType ident) = putIdent ident BoolType >>| pure (Right BoolType)
+ Right t = pure $ Left $ UnifyError p BoolType t
+//typeExpr (Op1Expr p UnMinus expr) = typeExpr expr
+// >>= \exprtype->case exprtype of
+// IntType = pure $ Right IntType
+// t = Left $ UnifyError p IntType exprtype
+//typeExpr (Op2Expr Pos Expr Op2 Expr) = undef
+//typeExpr (FunExpr Pos FunCall) = undef
+//typeExpr (EmptyListExpr Pos) = undef
+//typeExpr (TupleExpr Pos (Expr, Expr)) = undef
+//typeExpr (VarExpr Pos VarDef) = undef
+
+
+
////
-//class unify a :: Type a -> Env a
-//
-//instance unify Type where
-// unify IntType IntType = Right $ pure IntType
-// unify BoolType BoolType = Right $ pure BoolType
-// unify CharType CharType = Right $ pure CharType
-// unify _ _ = undef
+class unify a :: Type a -> Env Type
+
+instance unify Type where
+ unify IntType IntType = pure $ Right IntType
+ unify BoolType BoolType = pure $ Right BoolType
+ unify CharType CharType = pure $ Right CharType
+ unify _ _ = undef
//
//instance unify Expr where
// unify type expr = case type of