Skip to main content


I love it when I get #Rust errors that I worked on and forgot about
#rust
in reply to Hubert Figuière

@hub @federicomena for error recovery we have a benefit that the language itself doesn't: we can ignore the hard cases. If only one works, great! Use that as a signal for which parse to keep around for later analysis. If neither or both do, you fall back to the simpler error and bail early to avoid unnecessary knock down errors.