-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Make the parser TokenStream more resilient after mismatched delimiter recovery #62887
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
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fn main() {} | ||
estebank marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
fn f() -> isize { fn f() -> isize {} pub f< | ||
//~^ ERROR missing `fn` or `struct` for function or struct definition | ||
//~| ERROR mismatched types | ||
//~ ERROR this file contains an un-closed delimiter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
error: this file contains an un-closed delimiter | ||
--> $DIR/issue-62881.rs:6:53 | ||
| | ||
LL | fn f() -> isize { fn f() -> isize {} pub f< | ||
| - un-closed delimiter | ||
... | ||
LL | | ||
| ^ | ||
|
||
error: missing `fn` or `struct` for function or struct definition | ||
--> $DIR/issue-62881.rs:3:41 | ||
| | ||
LL | fn f() -> isize { fn f() -> isize {} pub f< | ||
| ^ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-62881.rs:3:29 | ||
| | ||
LL | fn f() -> isize { fn f() -> isize {} pub f< | ||
| - ^^^^^ expected isize, found () | ||
| | | ||
| this function's body doesn't return | ||
| | ||
= note: expected type `isize` | ||
found type `()` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
fn main() {} | ||
|
||
fn v() -> isize { //~ ERROR mismatched types | ||
mod _ { //~ ERROR expected identifier | ||
pub fn g() -> isizee { //~ ERROR cannot find type `isizee` in this scope | ||
mod _ { //~ ERROR expected identifier | ||
pub g() -> is //~ ERROR missing `fn` for function definition | ||
(), w20); | ||
} | ||
(), w20); //~ ERROR expected item, found `;` | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
error: expected identifier, found reserved identifier `_` | ||
--> $DIR/issue-62895.rs:4:5 | ||
| | ||
LL | mod _ { | ||
| ^ expected identifier, found reserved identifier | ||
|
||
error: expected identifier, found reserved identifier `_` | ||
--> $DIR/issue-62895.rs:6:5 | ||
| | ||
LL | mod _ { | ||
| ^ expected identifier, found reserved identifier | ||
|
||
error: missing `fn` for function definition | ||
--> $DIR/issue-62895.rs:7:4 | ||
| | ||
LL | pub g() -> is | ||
| ^^^^ | ||
help: add `fn` here to parse `g` as a public function | ||
| | ||
LL | pub fn g() -> is | ||
| ^^ | ||
|
||
error: expected item, found `;` | ||
--> $DIR/issue-62895.rs:10:9 | ||
| | ||
LL | (), w20); | ||
| ^ help: remove this semicolon | ||
|
||
error[E0412]: cannot find type `isizee` in this scope | ||
--> $DIR/issue-62895.rs:5:15 | ||
| | ||
LL | pub fn g() -> isizee { | ||
| ^^^^^^ help: a builtin type with a similar name exists: `isize` | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/issue-62895.rs:3:11 | ||
| | ||
LL | fn v() -> isize { | ||
| - ^^^^^ expected isize, found () | ||
| | | ||
| this function's body doesn't return | ||
| | ||
= note: expected type `isize` | ||
found type `()` | ||
|
||
error: aborting due to 6 previous errors | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm somewhat distraught that the mismatched delimiters error is not emitted in this case :-/ |
||
|
||
Some errors have detailed explanations: E0308, E0412. | ||
For more information about an error, try `rustc --explain E0308`. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.