You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introducing a `ParserErrorTrait` trait that describes an error.
An important change is that that trait now determines
if the error is fatal or not, which changes the error
returned in `ParseResult` (the fatal part was specified
as a boolean in a tuple, now that is gone).
Regarding naming, settling on this naming:
- soft errors, errors that are not fatal and just indicate a miss
- fatal errors, unrecoverable errors
Renamed the `ParseError` struct to `ParserError`
and the old enum is now called `ParserErrorKind`.
0 commit comments