@@ -905,8 +905,8 @@ impl<'a> DiagCtxtHandle<'a> {
905
905
DelayedBug => {
906
906
return self . inner . borrow_mut ( ) . emit_diagnostic ( diag, self . tainted_with_errors ) ;
907
907
}
908
- ForceWarning ( _ ) | Warning | Note | OnceNote | Help | OnceHelp | FailureNote | Allow
909
- | Expect ( _ ) => None ,
908
+ ForceWarning | Warning | Note | OnceNote | Help | OnceHelp | FailureNote | Allow
909
+ | Expect => None ,
910
910
} ;
911
911
912
912
// FIXME(Centril, #69537): Consider reintroducing panic on overwriting a stashed diagnostic
@@ -1045,7 +1045,7 @@ impl<'a> DiagCtxtHandle<'a> {
1045
1045
// Use `ForceWarning` rather than `Warning` to guarantee emission, e.g. with a
1046
1046
// configuration like `--cap-lints allow --force-warn bare_trait_objects`.
1047
1047
inner. emit_diagnostic (
1048
- DiagInner :: new ( ForceWarning ( None ) , DiagMessage :: Str ( warnings) ) ,
1048
+ DiagInner :: new ( ForceWarning , DiagMessage :: Str ( warnings) ) ,
1049
1049
None ,
1050
1050
) ;
1051
1051
}
@@ -1450,7 +1450,7 @@ impl<'a> DiagCtxtHandle<'a> {
1450
1450
#[ rustc_lint_diagnostics]
1451
1451
#[ track_caller]
1452
1452
pub fn struct_expect ( self , msg : impl Into < DiagMessage > , id : LintExpectationId ) -> Diag < ' a , ( ) > {
1453
- Diag :: new ( self , Expect ( id ) , msg)
1453
+ Diag :: new ( self , Expect , msg) . with_lint_id ( id )
1454
1454
}
1455
1455
}
1456
1456
@@ -1510,7 +1510,7 @@ impl DiagCtxtInner {
1510
1510
// Future breakages aren't emitted if they're `Level::Allow` or
1511
1511
// `Level::Expect`, but they still need to be constructed and
1512
1512
// stashed below, so they'll trigger the must_produce_diag check.
1513
- assert_matches ! ( diagnostic. level, Error | Warning | Allow | Expect ( _ ) ) ;
1513
+ assert_matches ! ( diagnostic. level, Error | Warning | Allow | Expect ) ;
1514
1514
self . future_breakage_diagnostics . push ( diagnostic. clone ( ) ) ;
1515
1515
}
1516
1516
@@ -1558,7 +1558,7 @@ impl DiagCtxtInner {
1558
1558
} ;
1559
1559
}
1560
1560
}
1561
- ForceWarning ( None ) => { } // `ForceWarning(Some(...))` is below, with `Expect`
1561
+ ForceWarning if diagnostic . lint_id . is_none ( ) => { } // `ForceWarning(Some(...))` is below, with `Expect`
1562
1562
Warning => {
1563
1563
if !self . flags . can_emit_warnings {
1564
1564
// We are not emitting warnings.
@@ -1580,9 +1580,9 @@ impl DiagCtxtInner {
1580
1580
}
1581
1581
return None ;
1582
1582
}
1583
- Expect ( expect_id ) | ForceWarning ( Some ( expect_id ) ) => {
1584
- self . fulfilled_expectations . insert ( expect_id ) ;
1585
- if let Expect ( _ ) = diagnostic. level {
1583
+ Expect | ForceWarning => {
1584
+ self . fulfilled_expectations . insert ( diagnostic . lint_id . unwrap ( ) ) ;
1585
+ if let Expect = diagnostic. level {
1586
1586
// Nothing emitted here for expected lints.
1587
1587
TRACK_DIAGNOSTIC ( diagnostic, & mut |_| None ) ;
1588
1588
self . suppressed_expected_diag = true ;
@@ -1631,7 +1631,7 @@ impl DiagCtxtInner {
1631
1631
1632
1632
if is_error {
1633
1633
self . deduplicated_err_count += 1 ;
1634
- } else if matches ! ( diagnostic. level, ForceWarning ( _ ) | Warning ) {
1634
+ } else if matches ! ( diagnostic. level, ForceWarning | Warning ) {
1635
1635
self . deduplicated_warn_count += 1 ;
1636
1636
}
1637
1637
self . has_printed = true ;
@@ -1899,9 +1899,9 @@ pub enum Level {
1899
1899
/// A `force-warn` lint warning about the code being compiled. Does not prevent compilation
1900
1900
/// from finishing.
1901
1901
///
1902
- /// The [`LintExpectationId`] is used for expected lint diagnostics. In all other cases this
1902
+ /// Requires a [`LintExpectationId`] for expected lint diagnostics. In all other cases this
1903
1903
/// should be `None`.
1904
- ForceWarning ( Option < LintExpectationId > ) ,
1904
+ ForceWarning ,
1905
1905
1906
1906
/// A warning about the code being compiled. Does not prevent compilation from finishing.
1907
1907
/// Will be skipped if `can_emit_warnings` is false.
@@ -1926,8 +1926,8 @@ pub enum Level {
1926
1926
/// Only used for lints.
1927
1927
Allow ,
1928
1928
1929
- /// Only used for lints.
1930
- Expect ( LintExpectationId ) ,
1929
+ /// Only used for lints. Requires a [`LintExpectationId`] for silencing the lints.
1930
+ Expect ,
1931
1931
}
1932
1932
1933
1933
impl fmt:: Display for Level {
@@ -1943,7 +1943,7 @@ impl Level {
1943
1943
Bug | Fatal | Error | DelayedBug => {
1944
1944
spec. set_fg ( Some ( Color :: Red ) ) . set_intense ( true ) ;
1945
1945
}
1946
- ForceWarning ( _ ) | Warning => {
1946
+ ForceWarning | Warning => {
1947
1947
spec. set_fg ( Some ( Color :: Yellow ) ) . set_intense ( cfg ! ( windows) ) ;
1948
1948
}
1949
1949
Note | OnceNote => {
@@ -1953,7 +1953,7 @@ impl Level {
1953
1953
spec. set_fg ( Some ( Color :: Cyan ) ) . set_intense ( true ) ;
1954
1954
}
1955
1955
FailureNote => { }
1956
- Allow | Expect ( _ ) => unreachable ! ( ) ,
1956
+ Allow | Expect => unreachable ! ( ) ,
1957
1957
}
1958
1958
spec
1959
1959
}
@@ -1962,11 +1962,11 @@ impl Level {
1962
1962
match self {
1963
1963
Bug | DelayedBug => "error: internal compiler error" ,
1964
1964
Fatal | Error => "error" ,
1965
- ForceWarning ( _ ) | Warning => "warning" ,
1965
+ ForceWarning | Warning => "warning" ,
1966
1966
Note | OnceNote => "note" ,
1967
1967
Help | OnceHelp => "help" ,
1968
1968
FailureNote => "failure-note" ,
1969
- Allow | Expect ( _ ) => unreachable ! ( ) ,
1969
+ Allow | Expect => unreachable ! ( ) ,
1970
1970
}
1971
1971
}
1972
1972
@@ -1977,8 +1977,7 @@ impl Level {
1977
1977
// Can this level be used in a subdiagnostic message?
1978
1978
fn can_be_subdiag ( & self ) -> bool {
1979
1979
match self {
1980
- Bug | DelayedBug | Fatal | Error | ForceWarning ( _) | FailureNote | Allow
1981
- | Expect ( _) => false ,
1980
+ Bug | DelayedBug | Fatal | Error | ForceWarning | FailureNote | Allow | Expect => false ,
1982
1981
1983
1982
Warning | Note | Help | OnceNote | OnceHelp => true ,
1984
1983
}
0 commit comments