diff options
author | Marvin Borner | 2022-03-04 21:00:32 +0100 |
---|---|---|
committer | Marvin Borner | 2022-03-04 21:00:32 +0100 |
commit | c7d578ec4d9b87c36f504e5a0691007439d2a025 (patch) | |
tree | 1030a9e9b9088471eed852e04f3f66cdbbfce6b8 /src/Fun/Grammar.hs | |
parent | 515f3688d3576cdfbba9346ffa8c38d746224675 (diff) |
Internal functions/types
Diffstat (limited to 'src/Fun/Grammar.hs')
-rw-r--r-- | src/Fun/Grammar.hs | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/Fun/Grammar.hs b/src/Fun/Grammar.hs index 7ec9e42..47191de 100644 --- a/src/Fun/Grammar.hs +++ b/src/Fun/Grammar.hs @@ -63,11 +63,16 @@ functionDeclarationDelimiter = <+-> space <?> "function declaration delimiter" +internalFunctions :: [String] +internalFunctions = ["_start", "_asm"] + functionName :: Parser String functionName = (special <|> letter) <+> iter (special <|> alphanum) >>> build + <|> internalWord + <=> (`elem` internalFunctions) <?> "function name" where build (first, rest) = first : rest @@ -79,11 +84,17 @@ functionTypes = <?> "function types" where build (a, b) = a ++ [b] +internalTypes :: [String] +internalTypes = ["_void"] + functionType :: Parser Type functionType = (letter <=> isUpper) <+> oneOrMore alphanum >>> build + <|> internalWord + <=> (`elem` internalTypes) + >>> buildInternal <|> literal '[' <-+> functionType <+-> literal ']' @@ -91,6 +102,7 @@ functionType = <?> "function type" where build (first, rest) = resolveType $ first : rest + buildInternal t = resolveType t buildList t = ListType t functionTypeDelimiter :: Parser Char @@ -105,10 +117,10 @@ functionFlagDelimiter :: Parser Char functionFlagDelimiter = literal '%' <?> "function flag delimiter" functionFlags :: [String] -functionFlags = ["inline", "deprecated"] +functionFlags = ["inline", "deprecated", "danger-void", "danger-asm"] functionFlag :: Parser String -functionFlag = letters <=> (`elem` functionFlags) <?> "function flag" +functionFlag = specialWord <=> (`elem` functionFlags) <?> "function flag" functionDefinition :: Parser FunctionDefinition functionDefinition = @@ -155,4 +167,4 @@ functionBodyElement = <?> "function body element" statement :: Parser FunctionBodyElement -- TODO -statement = accept "if" >>> Statement +statement = acceptSpecial "if" >>> Statement |