aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Parser.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fun/Parser.hs')
-rw-r--r--src/Fun/Parser.hs11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Fun/Parser.hs b/src/Fun/Parser.hs
index 4519e2f..8042caa 100644
--- a/src/Fun/Parser.hs
+++ b/src/Fun/Parser.hs
@@ -2,8 +2,9 @@ module Fun.Parser where
import Fun.Tree
+data Trace = StringTrace String | OrTrace [Trace] [Trace]
data State = State
- { trace :: [String]
+ { trace :: [Trace]
, line :: Maybe String
}
type Parser a = String -> Either State (a, String)
@@ -33,7 +34,7 @@ isAlpha c = elem c $ lowerAlpha ++ upperAlpha
----
char :: Parser Char
-char [] = Left $ State ["char"] Nothing
+char [] = Left $ State [StringTrace "char"] Nothing
char (x : xs) = Right (x, xs)
digit :: Parser Char
@@ -86,7 +87,7 @@ result :: a -> Parser a
result a cs = Right (a, cs)
invalid :: a -> Parser a
-invalid a cs = Left $ State ["<unknown>"] $ Just "Invalid"
+invalid a cs = Left $ State [StringTrace "<unknown>"] $ Just "Invalid"
iter :: Parser Char -> Parser String
iter m = (iterS m) <=> (/= "") <?> "multiple chars"
@@ -166,7 +167,7 @@ infixl 3 <|>
Left (State t' l) -> case (t, t') of
(t , []) -> Left (State t l)
([], t') -> Left (State t' l)
- (t , t') -> Left (State (t ++ ["<OR>"] ++ t') l)
+ (t , t') -> Left (State [OrTrace t t'] l)
Right (result, cs) -> Right (result, cs)
result -> result
@@ -174,7 +175,7 @@ infixl 3 <|>
infix 0 <?>
(<?>) :: Parser a -> String -> Parser a
(parser <?> string) input = case parser input of
- Left (State t l) -> Left $ State ([string] ++ t) l
+ Left (State t l) -> Left $ State ([StringTrace string] ++ t) l
Right a -> Right a
----