mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-11-23 10:23:39 +03:00
Update ‘CHANGELOG.md’ and ‘README.md’
This commit is contained in:
parent
3edbe9f54a
commit
4c5aae7098
@ -11,6 +11,10 @@
|
||||
* The `count` combinator now works with `Applicative` instances (previously
|
||||
it worked only with instances of `Alternative`). It's now also faster.
|
||||
|
||||
* New primitive parser `withRecovery` added. The parser allows to recover
|
||||
from parse errors “on-the-fly” and continue parsing. Once parsing is
|
||||
finished, several parse errors may be reported or ignored altogether.
|
||||
|
||||
## Megaparsec 4.3.0
|
||||
|
||||
* Canonicalized `Applicative`/`Monad` instances. Thanks to Herbert Valerio
|
||||
|
@ -76,6 +76,10 @@ via combination of these primitives:
|
||||
* `notFollowedBy` succeeds when its argument fails, it does not consume
|
||||
input.
|
||||
|
||||
* `withRecovery` allows to recover from parse errors “on-the-fly” and
|
||||
continue parsing. Once parsing is finished, several parse errors may be
|
||||
reported or ignored altogether.
|
||||
|
||||
* `eof` only succeeds at the end of input.
|
||||
|
||||
* `token` is used to parse single token.
|
||||
|
Loading…
Reference in New Issue
Block a user