aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Syntax.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-03-03 21:40:07 +0100
committerMarvin Borner2022-03-03 21:40:26 +0100
commit6af1f804f0def7f48ae2d726951b13c895b85931 (patch)
tree617bcd70c9c2ec65fa2ffb525a88576113571a1a /src/Fun/Syntax.hs
parent8a3405146b918ef18a42aca1bcdac55a8c484c47 (diff)
Syntax and typing start
Diffstat (limited to 'src/Fun/Syntax.hs')
-rw-r--r--src/Fun/Syntax.hs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Fun/Syntax.hs b/src/Fun/Syntax.hs
new file mode 100644
index 0000000..ab17215
--- /dev/null
+++ b/src/Fun/Syntax.hs
@@ -0,0 +1,20 @@
+module Fun.Syntax where
+
+import Data.Either
+import Fun.Tree
+
+data SyntaxError = SyntaxError String
+
+syntaxBlock :: Block -> Either [SyntaxError] Block
+syntaxBlock (FunctionBlock decl defns) = Right $ FunctionBlock decl defns
+
+mergeSyntax :: [Either [SyntaxError] a] -> ([a] -> b) -> Either [SyntaxError] b
+mergeSyntax d c = case any isLeft d of
+ True -> Left $ concat $ lefts d
+ False -> Right $ c $ rights d
+
+syntaxProgram :: Program -> Either [SyntaxError] Program
+syntaxProgram (Program blocks) = mergeSyntax (map syntaxBlock blocks) Program
+
+syntaxTree :: Tree -> Either [SyntaxError] Tree
+syntaxTree (Tree programs) = mergeSyntax (map syntaxProgram programs) Tree