-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deduplicate mismatched delimiter errors #57944
Deduplicate mismatched delimiter errors #57944
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
d31c1e1
to
0880f43
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
b26d032
to
40ad7c3
Compare
This comment has been minimized.
This comment has been minimized.
40ad7c3
to
8fbc738
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Delay unmatched delimiter errors until after the parser has run to deduplicate them when parsing and attempt recovering intelligently.
f8926b2
to
6e62129
Compare
CC @davidtwco @zackmdavis @euclio @oli-obk who might have comments on the approach/idea/result. |
@bors try |
@rust-timer build dbcc2e8 the last PR was a big perf hit, so let's check this before we merge |
Success: Queued dbcc2e8 with parent ad43389, comparison URL. |
Finished benchmarking try commit dbcc2e8 |
@bors r=oli-obk as per our in person conversation. |
📌 Commit c54b230 has been approved by |
💔 Test failed - checks-travis |
This comment has been minimized.
This comment has been minimized.
@bors r=oli-obk |
📌 Commit fb3c4fb has been approved by |
☀️ Test successful - checks-travis, status-appveyor |
Delay unmatched delimiter errors until after the parser has run to deduplicate them when parsing and attempt recovering intelligently.
Second attempt at #54029, follow up to #53949. Fix #31528.