aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Tree.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-02-20 18:48:30 +0100
committerMarvin Borner2022-02-20 18:48:30 +0100
commitfa02225c5ae8b704408769c70bb47101042762b8 (patch)
tree2bbd0763fccacd0a35631d6ee9a2176ed836eef5 /src/Fun/Tree.hs
parent5cc450b6e8554f5d982f444b9026447971c94024 (diff)
Haskell ftw
Diffstat (limited to 'src/Fun/Tree.hs')
-rw-r--r--src/Fun/Tree.hs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Fun/Tree.hs b/src/Fun/Tree.hs
new file mode 100644
index 0000000..a7709ee
--- /dev/null
+++ b/src/Fun/Tree.hs
@@ -0,0 +1,18 @@
+module Fun.Tree where
+
+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]
+ deriving Show
+
+data FunctionDeclaration = FunctionDeclarationWithoutFlags String Char [String] | FunctionDeclarationWithFlags String Char [String] [String]
+ deriving Show
+
+data FunctionDefinition = FunctionDefinition String String
+ deriving Show