diff options
author | Marvin Borner | 2022-03-05 18:14:28 +0100 |
---|---|---|
committer | Marvin Borner | 2022-03-05 18:14:28 +0100 |
commit | cab564e400590cbd8a88e190fe381a74655005cf (patch) | |
tree | ded57f2ddc8d127d1e82ae999862ce169ef900ba /src/Fun/Syntax.hs | |
parent | c7d578ec4d9b87c36f504e5a0691007439d2a025 (diff) |
Multiple file support for generating assembly
Diffstat (limited to 'src/Fun/Syntax.hs')
-rw-r--r-- | src/Fun/Syntax.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fun/Syntax.hs b/src/Fun/Syntax.hs index c426a03..1c4846c 100644 --- a/src/Fun/Syntax.hs +++ b/src/Fun/Syntax.hs @@ -10,7 +10,7 @@ mergeSyntax :: [Either [SyntaxError] a] -> ([a] -> b) -> Either [SyntaxError] b mergeSyntax d c | any isLeft d = Left $ concat $ lefts d | otherwise = Right $ c $ rights d --- TODO: Disallow same declarations in entire tree (w/o visibility) +-- TODO: Overloading only if first element is different checkFunctionArity :: Block -> Either [SyntaxError] Block checkFunctionArity (FunctionBlock decl defns) = |