aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Grammar.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/Grammar.hs
parent8a3405146b918ef18a42aca1bcdac55a8c484c47 (diff)
Syntax and typing start
Diffstat (limited to 'src/Fun/Grammar.hs')
-rw-r--r--src/Fun/Grammar.hs16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/Fun/Grammar.hs b/src/Fun/Grammar.hs
index 8014a20..7f6625d 100644
--- a/src/Fun/Grammar.hs
+++ b/src/Fun/Grammar.hs
@@ -2,6 +2,7 @@ module Fun.Grammar where
import Fun.Parser
import Fun.Tree
+import Fun.Typer
-- TODO: Multiple programs (= files) in tree
tree :: Parser Tree
@@ -11,14 +12,7 @@ program :: Parser Program
program = iterFull block >>> Program <?> "program"
block :: Parser Block
-block =
- functionBlock
- <+-> newline
- >>> Block
- <|> functionBlock
- <+-> endOfFile
- >>> Block
- <?> "block"
+block = functionBlock <+-> newline <|> functionBlock <+-> endOfFile <?> "block"
visibility :: Parser Visibility
visibility =
@@ -26,7 +20,7 @@ visibility =
<|> (literal '-' >>> const PrivateVisibility)
<?> "visibility"
-functionBlock :: Parser FunctionBlock
+functionBlock :: Parser Block
functionBlock = functionDeclaration <+> iter functionDefinition >>> build
where build (decl, defn) = FunctionBlock decl defn
@@ -77,13 +71,13 @@ functionName =
<?> "function name"
where build (first, rest) = first : rest
-functionTypes :: Parser [String]
+functionTypes :: Parser [Type]
functionTypes =
iter (functionType <+-> space <+-> functionTypeDelimiter <+-> space)
<+> functionType
>>> build
<?> "function types"
- where build (a, b) = a ++ [b]
+ where build (a, b) = (map resolveType a) ++ [resolveType b]
functionType :: Parser String
functionType =