-
Notifications
You must be signed in to change notification settings - Fork 898
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
Subtree push with 1.77.0 nightly 2023-12-28 #5994
Merged
calebcartwright
merged 17 commits into
rust-lang:master
from
ytmimi:subtree_sync_with_1.77.0_nightly_2023_12_28
Dec 29, 2023
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7045cad
Split `Handler::emit_diagnostic` in two.
nnethercote c7992af
Rename `Handler` as `DiagCtxt`.
nnethercote 7738d69
Rename `ParseSess::span_diagnostic` as `ParseSess::dcx`.
nnethercote cce3961
Rename `ParseSess::with_span_handler` as `ParseSess::with_dcx`.
nnethercote ef315b3
Rename `default_handler` as `default_dcx`.
nnethercote ca2472e
Rename many `DiagCtxt` and `EarlyDiagCtxt` locals.
nnethercote 0315daa
Plumb awaitness of for loops
eholk df30a7a
Give `VariantData::Struct` named fields, to clairfy `recovered`.
aDotInTheVoid 60419aa
Refactor AST trait bound modifiers
fmease 5085bf5
Auto merge of #119163 - fmease:refactor-ast-trait-bound-modifiers, r=…
bors b29b02c
Auto merge of #118847 - eholk:for-await, r=compiler-errors
bors 101bc22
Improve some names.
nnethercote d9ea102
bool->enum for ast::PatKind::Struct presence of `..`
aDotInTheVoid f002221
Rollup merge of #119231 - aDotInTheVoid:PatKind-struct-bool-docs, r=c…
matthiaskrgr fd78575
Bump Update itertools to 0.11.
ytmimi 6cc513f
Merge remote-tracking branch 'origin/master' into subtree_sync_with_1…
ytmimi 621904f
chore: bump to nightly 2023_12_27 toolchain
ytmimi 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 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2023-12-12" | ||
channel = "nightly-2023-12-28" | ||
components = ["llvm-tools", "rustc-dev"] |
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
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
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
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
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
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.
All of these changes are related to rust-lang/rust#119163