-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Use empty range when there's "gap" in token source #11032
Conversation
|
code | total | + violation | - violation | + fix | - fix |
---|---|---|---|---|---|
E999 | 1 | 0 | 1 | 0 | 0 |
Formatter (stable)
✅ ecosystem check detected no format changes.
Formatter (preview)
✅ ecosystem check detected no format changes.
// It's possible during error recovery that the parsing didn't consume any tokens. In that | ||
// case, `last_token_end` still points to the end of the previous token but `start` is the | ||
// start of the current token. Calling `TextRange::new(start, self.last_token_end)` would | ||
// panic in that case because `start > end`. This path "detects" this case and creates an | ||
// empty range instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: i think this is specific to error recovery and instead is true for all "empty" nodes that don't consist of any tokens?
If that's the case, then I think we can remove the missing_node_range
method that was only added to handle empty node ranges.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think missing_node_range
is still useful in places where you don't have the start
value or rather the start value itself is the current token start.
6979dad
to
337f16e
Compare
Summary
This fixes a bug where the parser would panic when there is a "gap" in
the token source.
What's a gap?
The reason it's
<=
instead of just==
is because there could be whitespaces betweenthe two tokens. For example:
Or, there could tokens that are considered "trivia" and thus aren't emitted by the token
source. These are comments and non-logical newlines. For example:
In either of the above cases, there's a "gap" between the end of the last token and start
of the current token.
Test Plan
Add test cases and update the snapshots.