make fromparse utility show the parse error
This commit is contained in:
parent
59c9dde458
commit
da70e00e3b
@ -208,7 +208,7 @@ parsewith :: Parser a -> String -> Either ParseError a
|
|||||||
parsewith p ts = parse p "" ts
|
parsewith p ts = parse p "" ts
|
||||||
|
|
||||||
fromparse :: Either ParseError a -> a
|
fromparse :: Either ParseError a -> a
|
||||||
fromparse = either (\_ -> error "parse error") id
|
fromparse = either (\e -> error $ "ledger parse error at "++(show e)) id
|
||||||
|
|
||||||
nonspace :: GenParser Char st Char
|
nonspace :: GenParser Char st Char
|
||||||
nonspace = satisfy (not . isSpace)
|
nonspace = satisfy (not . isSpace)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user