From ab757822c75aa71bd725126d9511fcb678f6e5e3 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 13 Feb 2014 02:02:11 +1100 Subject: Added better error messages in parsers --- Thue/Parser.hs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Thue') diff --git a/Thue/Parser.hs b/Thue/Parser.hs index d7b0719..2ee41ae 100644 --- a/Thue/Parser.hs +++ b/Thue/Parser.hs @@ -49,7 +49,8 @@ rule = do separatorLine = whiteSpace >> separator >> whiteSpace >> eol -separator = string "::=" +separator = string "::=" + "rule separator" initialState = do @@ -62,12 +63,14 @@ ruleState = some ruleStateChar ruleStateChar = noneOf "\n\r:" <|> try (char ':' >> notFollowedBy (string ":=") >> return ':') + "state character" state = many stateChar -stateChar = noneOf "\n\r" +stateChar = noneOf "\n\r" + "state character" whiteSpace = many (oneOf "\t ") @@ -77,4 +80,5 @@ eol = try (string "\r\n") <|> try (string "\n\r") <|> try (string "\r") <|> try (string "\n") + "end of line" -- cgit