Uh oh!
There was an error while loading. Please reload this page.
Convert diagnostics in parser/expr to SessionDiagnostic - #100713
Merged
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Xiretzaforce-pushed
the
parser-expr-session-diagnostics
branch
2 times, most recently
from
August 18, 2022 10:29
1675461 to
7c4b214Comparefmease
reviewed
Aug 18, 2022
Uh oh!
There was an error while loading. Please reload this page.
Xiretzaforce-pushed
the
parser-expr-session-diagnostics
branch
2 times, most recently
from
August 18, 2022 16:27
143e9fd to
6061c7bCompare
This comment has been minimized.
This comment has been minimized.
Xiretzaforce-pushed
the
parser-expr-session-diagnostics
branch
from
August 18, 2022 20:37
6061c7b to
276f250CompareXiretza
marked this pull request as ready for review
August 18, 2022 20:37
rustbot
commented
Aug 18, 2022
Collaborator
|
Xiretza
commented
Aug 18, 2022
ContributorAuthor
r? rust-lang/diagnostics |
Xiretza
commented
Aug 18, 2022
Uh oh!
There was an error while loading. Please reload this page.
estebank
commented
Aug 19, 2022
Contributor
bors
commented
Aug 19, 2022
Collaborator
📌 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.
Xiretzaforce-pushed
the
parser-expr-session-diagnostics
branch
from
August 20, 2022 11:18
276f250 to
5cb75b9CompareXiretza
commented
Aug 20, 2022
ContributorAuthor
@rustbot ready |
Xiretzaforce-pushed
the
parser-expr-session-diagnostics
branch
from
August 21, 2022 12:54
5cb75b9 to
ffcaa0dComparedavidtwco
commented
Aug 22, 2022
Member
@bors r=estebank |
bors
commented
Aug 22, 2022
Collaborator
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
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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::exprtoSessionDiagnostics, I've left things such asmultipart_suggestions out for now in the hopes of a derive API being developed soon.