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/Parser.hs | |
parent | 515f3688d3576cdfbba9346ffa8c38d746224675 (diff) |
Internal functions/types
Diffstat (limited to 'src/Fun/Parser.hs')
-rw-r--r-- | src/Fun/Parser.hs | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Fun/Parser.hs b/src/Fun/Parser.hs index ff1e6bb..dbfb4f7 100644 --- a/src/Fun/Parser.hs +++ b/src/Fun/Parser.hs @@ -75,6 +75,13 @@ alphanum = digit <|> letter <?> "letter or digit" special :: Parser Char special = oneOf "+-*/<^>$@#&!?" <?> "special character" +specialWord :: Parser String +specialWord = oneOrMore (alphanum <|> special) <?> "special word" + +internalWord :: Parser String +internalWord = literal '_' <+> specialWord >>> build <?> "special word" + where build (x, xs) = x : xs + oneOf :: [Char] -> Parser Char oneOf s = char <=> (`elem` s) <?> "one of" @@ -99,11 +106,8 @@ iterFull m = m <+> iterFull m >>> (\(x, y) -> x : y) <|> iterFull' iterFull' "" = Right ([], "") iterFull' _ = Left $ State [] $ Nothing -token :: Parser a -> Parser a -token = (<+-> space) - -accept :: String -> Parser String -accept w = token ((oneOrMore notSpace) <=> (== w)) +acceptSpecial :: String -> Parser String +acceptSpecial w = specialWord <=> (== w) -- Given a parser and a predicate return the parser only if it satisfies the predicate infix 7 <=> |