<?> now accepts complete Errors
authorpimjager <pim@pimjager.nl>
Tue, 1 Mar 2016 21:23:15 +0000 (22:23 +0100)
committerpimjager <pim@pimjager.nl>
Tue, 1 Mar 2016 21:23:15 +0000 (22:23 +0100)
src/lex.icl
src/parse.icl
src/yard.dcl
src/yard.icl

index ac5168f..b3c76cd 100644 (file)
@@ -72,4 +72,4 @@ lexToken =
                lexEscape = fromJust <$> ((
                        lexOp "a" (toChar 7) <|> lexOp "b" '\b' <|> lexOp "f" '\f' <|>
                        lexOp "n" '\n' <|> lexOp "r" '\t' <|> lexOp "v" '\v' <|>
-                       lexOp "'" '\'') <?> ("Unknown escape", 0))
+                       lexOp "'" '\'') <?> LexError "Unknown escape")
index fed0760..7320b11 100644 (file)
@@ -178,7 +178,7 @@ derive gEq TokenValue
 satTok :: TokenValue -> Parser Token Token
 satTok t = top >>= \tok=:(pos1, pos2, tv) -> if (eq t tok) 
                                             (return tok) 
-                                            (fail <?> (printToString tv+++printToString t, pos1))
+                                            (fail <?> Unexpected (printToString tv) (pos1, pos2))
        where
                eq (IdentToken _) (_, _, IdentToken _) = True
                eq (NumberToken _) (_, _, NumberToken _) = True
index 178356a..a40b42d 100644 (file)
@@ -8,7 +8,7 @@ from Control.Monad import class Monad
 from Control.Applicative import class Applicative, class Alternative
 import Data.Void
 
-:: Error = ParseError | LexError String | Unexpected String Int
+:: Error = ParseError | LexError String | Unexpected String (Int, Int)
 :: Parser a b = Parser ([a] -> (Either Error b, [a]))
 
 instance Functor (Parser a)
@@ -20,7 +20,7 @@ instance toString Error
 
 
 runParser :: (Parser a b) [a] -> (Either Error b, [a])
-(<?>) :: (Parser a b) (String, Int) -> Parser a b
+(<?>) :: (Parser a b) Error -> Parser a b
 fail :: Parser a b
 top :: Parser a a
 peek :: Parser a a
index a78dcbb..7b74454 100644 (file)
@@ -17,7 +17,8 @@ import Data.Void
 instance toString Error where
        toString ParseError = "General parse error"
        toString (LexError e) = "Lexer error: " +++ e
-    toString (Unexpected e pos) = "Unexpected " +++ e +++ " at position " +++ (toString pos)
+    toString (Unexpected e (l,c)) = "Unexpected " +++ e +++ " at " 
+                                        +++ (toString l) +++ ":" +++ (toString c)
 
 runParser :: (Parser a b) [a] -> (Either Error b, [a])
 runParser (Parser f) i = f i
@@ -48,9 +49,9 @@ instance Alternative (Parser a) where
             (Right r, rest)  = (Right r, rest)
 
 //Try the parser, if it fails decorate the error with Expected of the given String and position
-(<?>) :: (Parser a b) (String, Int) -> Parser a b
-(<?>) p (e,pos) = Parser \i -> case runParser p i of
-    (Left e1, rest) = (Left $ e1 + Unexpected e pos, rest)
+(<?>) :: (Parser a b) Error -> Parser a b
+(<?>) p e = Parser \i -> case runParser p i of
+    (Left e1, rest) = (Left $ e1 + e, rest)
     (Right r, rest) = (Right r, rest)
 
 fail :: Parser a b