module Fun.Tree where import Fun.Typer data Visibility = PublicVisibility | PrivateVisibility deriving Show data FunctionFlag = FunctionInline | FunctionDeprecated | FunctionUnknown deriving Show instance Read FunctionFlag where readsPrec _ "inline" = [(FunctionInline, "")] readsPrec _ "deprecated" = [(FunctionDeprecated, "")] readsPrec _ _ = [(FunctionUnknown, "")] data Tree = Tree [Program] deriving Show data Program = Program [Block] deriving Show data Block = FunctionBlock { bDecl :: FunctionDeclaration , bDefns :: [FunctionDefinition] } -- | DataBlock .. TODO deriving Show data FunctionDeclaration = FunctionDeclaration { dName :: String , dVisibility :: Visibility , dTypes :: [Type] , dFlags :: [FunctionFlag] } deriving Show data FunctionDefinition = FunctionDefinition { dPattern :: FunctionPattern , dBody :: FunctionBody } deriving Show data FunctionPattern = FunctionPattern { pElements :: [FunctionPatternElement] } deriving Show data FunctionPatternElement = FunctionPatternParameter String | FunctionPatternString String | FunctionPatternNumber Integer | FunctionPatternWildcard | FunctionPatternSuperWildcard deriving Show data FunctionBody = FunctionBody { bElements :: [FunctionBodyElement] } deriving Show data FunctionBodyElement = Statement String | FunctionBodyIdentifier String | FunctionBodyParameter String | FunctionBodyString String | FunctionBodyNumber Integer deriving Show