aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Tree.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-02-23 01:38:32 +0100
committerMarvin Borner2022-02-23 01:38:32 +0100
commitb6805304770bd719fec6116ea049830b5df95c81 (patch)
treea400b065a967a42c61a83530fdc849f1d59d0a6e /src/Fun/Tree.hs
parent35fe3258800793ad923afe036abd61b0e7778186 (diff)
Wuah
Diffstat (limited to 'src/Fun/Tree.hs')
-rw-r--r--src/Fun/Tree.hs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Fun/Tree.hs b/src/Fun/Tree.hs
index d6cdecd..ce6cf6c 100644
--- a/src/Fun/Tree.hs
+++ b/src/Fun/Tree.hs
@@ -17,8 +17,14 @@ data Visibility = PublicVisibility | PrivateVisibility
data FunctionDeclaration = FunctionDeclaration String
Visibility
[String]
- [String]
+ [FunctionFlag]
+ deriving Show
+data FunctionFlag = FunctionInline | FunctionDeprecated | FunctionUnknown
deriving Show
+instance Read FunctionFlag where
+ readsPrec _ "inline" = [(FunctionInline, "")]
+ readsPrec _ "deprecated" = [(FunctionDeprecated, "")]
+ readsPrec _ _ = [(FunctionUnknown, "")]
data FunctionDefinition = FunctionDefinition FunctionPattern FunctionBody
deriving Show