Ontwerpbesluit toegevoegd dat functies pas na decla beschikbaar zijn
[cc1516.git] / sem.icl
diff --git a/sem.icl b/sem.icl
index 7af3b20..eb626f6 100644 (file)
--- a/sem.icl
+++ b/sem.icl
@@ -105,7 +105,6 @@ typeExpr (VarExpr p (VarDef ident fs)) = gets (\(st, r)->'Map'.get ident st)
     >>= \mt->case mt of
         Nothing = liftT $ Left $ UndeclaredVariableError p ident
         Just t = unify t fs
-
 typeOp2 :: Expr Expr Op2 [Type] Type -> Env Type
 typeOp2 e1 e2 op ts ret = typeExpr e1 >>= \t1-> typeExpr e2 >>= \t2->
     unify t1 t2 >>= \t3->if (isMember t3 ts) (pure ret)