-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Convert diagnostics in parser/expr to SessionDiagnostic #100713
Merged
bors
merged 1 commit into
rust-lang:master
from
Xiretza:parser-expr-session-diagnostics
Aug 22, 2022
Merged
Convert diagnostics in parser/expr to SessionDiagnostic #100713
bors
merged 1 commit into
rust-lang:master
from
Xiretza:parser-expr-session-diagnostics
Aug 22, 2022
Conversation
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 comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
1675461
to
7c4b214
Compare
fmease
reviewed
Aug 18, 2022
143e9fd
to
6061c7b
Compare
This comment has been minimized.
This comment has been minimized.
6061c7b
to
276f250
Compare
|
r? rust-lang/diagnostics |
Xiretza
commented
Aug 18, 2022
📌 Commit 276f250fe29e879773a27cb1c73eddfdbadbb32b has been approved by It is now in the queue for this repository. |
This comment was marked as resolved.
This comment was marked as resolved.
276f250
to
5cb75b9
Compare
@rustbot ready |
5cb75b9
to
ffcaa0d
Compare
@bors r=estebank |
Dylan-DPC
added a commit
to Dylan-DPC/rust
that referenced
this pull request
Aug 22, 2022
…stics, r=estebank Convert diagnostics in parser/expr to SessionDiagnostic This migrates all the easy cases in `rustc_parse::parser::expr` to `SessionDiagnostic`s, I've left things such as `multipart_suggestion`s out for now in the hopes of a derive API being developed soon.
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Aug 22, 2022
Rollup of 8 pull requests Successful merges: - rust-lang#98200 (Expand potential inner `Or` pattern for THIR) - rust-lang#99770 (Make some const prop mir-opt tests `unit-test`s) - rust-lang#99957 (Rework Ipv6Addr::is_global to check for global reachability rather than global scope - rebase) - rust-lang#100331 (Guarantee `try_reserve` preserves the contents on error) - rust-lang#100336 (Fix two const_trait_impl issues) - rust-lang#100713 (Convert diagnostics in parser/expr to SessionDiagnostic) - rust-lang#100820 (Use pointer `is_aligned*` methods) - rust-lang#100872 (Add guarantee that Vec::default() does not alloc) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-translation
Area: Translation infrastructure, and migrating existing diagnostics to SessionDiagnostic
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
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.
This migrates all the easy cases in
rustc_parse::parser::expr
toSessionDiagnostic
s, I've left things such asmultipart_suggestion
s out for now in the hopes of a derive API being developed soon.