aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Tree.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/Tree.hs
parent8a3405146b918ef18a42aca1bcdac55a8c484c47 (diff)
Syntax and typing start
Diffstat (limited to 'src/Fun/Tree.hs')
-rw-r--r--src/Fun/Tree.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fun/Tree.hs b/src/Fun/Tree.hs
index 354677d..63ca0b5 100644
--- a/src/Fun/Tree.hs
+++ b/src/Fun/Tree.hs
@@ -1,14 +1,14 @@
module Fun.Tree where
+import Fun.Typer
+
data Tree = Tree [Program]
deriving Show
data Program = Program [Block]
deriving Show
-data Block = Block FunctionBlock -- | Block DataBlock ...
- deriving Show
-data FunctionBlock = FunctionBlock FunctionDeclaration [FunctionDefinition]
+data Block = FunctionBlock FunctionDeclaration [FunctionDefinition] -- | DataBlock .. TODO
deriving Show
data Visibility = PublicVisibility | PrivateVisibility
@@ -16,7 +16,7 @@ data Visibility = PublicVisibility | PrivateVisibility
data FunctionDeclaration = FunctionDeclaration String
Visibility
- [String]
+ [Type]
[FunctionFlag]
deriving Show
data FunctionFlag = FunctionInline | FunctionDeprecated | FunctionUnknown