Skip to content

Commit 4d219d0

Browse files
committed
move sugg to derive session diagnostic
1 parent 5e94b5f commit 4d219d0

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

compiler/rustc_parse/messages.ftl

+1
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ parse_expected_identifier = expected identifier
339339
parse_sugg_escape_identifier = escape `{$ident_name}` to use it as an identifier
340340
341341
parse_sugg_remove_comma = remove this comma
342+
parse_sugg_add_let_for_stmt = you might have meant to introduce a new binding
342343
343344
parse_expected_semi_found_reserved_identifier_str = expected `;`, found reserved identifier `{$token}`
344345
parse_expected_semi_found_keyword_str = expected `;`, found keyword `{$token}`

compiler/rustc_parse/src/errors.rs

+12
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,18 @@ pub(crate) struct SuggRemoveComma {
906906
pub span: Span,
907907
}
908908

909+
#[derive(Subdiagnostic)]
910+
#[suggestion(
911+
parse_sugg_add_let_for_stmt,
912+
style = "verbose",
913+
applicability = "maybe-incorrect",
914+
code = "let "
915+
)]
916+
pub(crate) struct SuggAddMissingLetStmt {
917+
#[primary_span]
918+
pub span: Span,
919+
}
920+
909921
#[derive(Subdiagnostic)]
910922
pub(crate) enum ExpectedIdentifierFound {
911923
#[label(parse_expected_identifier_found_reserved_identifier)]

compiler/rustc_parse/src/parser/diagnostics.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use crate::errors::{
1313
IncorrectUseOfAwait, ParenthesesInForHead, ParenthesesInForHeadSugg,
1414
PatternMethodParamWithoutBody, QuestionMarkInType, QuestionMarkInTypeSugg, SelfParamNotFirst,
1515
StructLiteralBodyWithoutPath, StructLiteralBodyWithoutPathSugg, StructLiteralNeedingParens,
16-
StructLiteralNeedingParensSugg, SuggEscapeIdentifier, SuggRemoveComma,
16+
StructLiteralNeedingParensSugg, SuggAddMissingLetStmt, SuggEscapeIdentifier, SuggRemoveComma,
1717
UnexpectedConstInGenericParam, UnexpectedConstParamDeclaration,
1818
UnexpectedConstParamDeclarationSugg, UnmatchedAngleBrackets, UseEqInstead,
1919
};
@@ -32,8 +32,8 @@ use rustc_ast::{
3232
use rustc_ast_pretty::pprust;
3333
use rustc_data_structures::fx::FxHashSet;
3434
use rustc_errors::{
35-
pluralize, Applicability, Diagnostic, DiagnosticBuilder, DiagnosticMessage, ErrorGuaranteed,
36-
FatalError, Handler, IntoDiagnostic, MultiSpan, PResult,
35+
pluralize, AddToDiagnostic, Applicability, Diagnostic, DiagnosticBuilder, DiagnosticMessage,
36+
ErrorGuaranteed, FatalError, Handler, IntoDiagnostic, MultiSpan, PResult,
3737
};
3838
use rustc_session::errors::ExprParenthesesNeeded;
3939
use rustc_span::source_map::Spanned;
@@ -1019,12 +1019,8 @@ impl<'a> Parser<'a> {
10191019
match self.parse_ty() {
10201020
Ok(_) => {
10211021
if self.token == token::Eq {
1022-
err.span_suggestion_verbose(
1023-
prev_span,
1024-
"you might have meant to introduce a new binding",
1025-
"let ".to_string(),
1026-
Applicability::MaybeIncorrect,
1027-
);
1022+
let sugg = SuggAddMissingLetStmt { span: prev_span };
1023+
sugg.add_to_diagnostic(err);
10281024
}
10291025
}
10301026
Err(e) => {

0 commit comments

Comments
 (0)