diff options
author | Marvin Borner | 2022-02-23 01:38:32 +0100 |
---|---|---|
committer | Marvin Borner | 2022-02-23 01:38:32 +0100 |
commit | b6805304770bd719fec6116ea049830b5df95c81 (patch) | |
tree | a400b065a967a42c61a83530fdc849f1d59d0a6e /src/Fun/Tree.hs | |
parent | 35fe3258800793ad923afe036abd61b0e7778186 (diff) |
Wuah
Diffstat (limited to 'src/Fun/Tree.hs')
-rw-r--r-- | src/Fun/Tree.hs | 8 |
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 |