-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Recover better when a user uses commas in a for-statement instead of semicolons #75632
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
15d2fb2
Recover better when a user uses commas in a for-statement instead of …
CyrusNajmabadi f92c48b
Merge remote-tracking branch 'upstream/main' into forRecoverys
CyrusNajmabadi 2f1c5c9
Simplify
CyrusNajmabadi d333f07
Simplify
CyrusNajmabadi 812e1bc
Merge remote-tracking branch 'upstream/main' into forRecoverys
CyrusNajmabadi b317e31
Fixup tests
CyrusNajmabadi 1a1addf
Fixup tests
CyrusNajmabadi 961b913
Improve recovery
CyrusNajmabadi fbd98e9
Docs
CyrusNajmabadi f446d4e
Update test
CyrusNajmabadi 448c735
Update test
CyrusNajmabadi 7de7e64
Update test
CyrusNajmabadi a68c5bc
inline
CyrusNajmabadi ffd6abf
IDE tests
CyrusNajmabadi 31aaa35
IDE tests
CyrusNajmabadi 527468b
Seal
CyrusNajmabadi 4873450
Simplify
CyrusNajmabadi b15605a
Doc
CyrusNajmabadi 5724f2d
Merge branch 'main' into forRecoverys
CyrusNajmabadi 949861e
Add test
CyrusNajmabadi 8c1fea8
Merge remote-tracking branch 'upstream/main' into forRecoverys
CyrusNajmabadi 857ad2c
Simplify
CyrusNajmabadi 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
206 changes: 119 additions & 87 deletions
206
src/Compilers/CSharp/Portable/Parser/LanguageParser.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
170 changes: 109 additions & 61 deletions
170
src/Compilers/CSharp/Test/Emit3/Semantics/OutVarTests.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
169 changes: 109 additions & 60 deletions
169
src/Compilers/CSharp/Test/Emit3/Semantics/PatternMatchingTests_Scope.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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
Oops, something went wrong.
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.
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.
no tree produced now since hte start/end of hte span is not validly containing the for-statement. it worked before because parsing was so thrown off it through the for loop was terminated.