@@ -411,6 +411,8 @@ pub struct Handler {
411
411
/// as well as inconsistent state observation.
412
412
struct HandlerInner {
413
413
flags : HandlerFlags ,
414
+ /// The number of lint errors that have been emitted.
415
+ lint_err_count : usize ,
414
416
/// The number of errors that have been emitted, including duplicates.
415
417
///
416
418
/// This is not necessarily the count that's reported to the user once
@@ -550,6 +552,7 @@ impl Handler {
550
552
flags,
551
553
inner : Lock :: new ( HandlerInner {
552
554
flags,
555
+ lint_err_count : 0 ,
553
556
err_count : 0 ,
554
557
warn_count : 0 ,
555
558
deduplicated_err_count : 0 ,
@@ -726,7 +729,13 @@ impl Handler {
726
729
/// Construct a builder at the `Error` level with the `msg`.
727
730
// FIXME: This method should be removed (every error should have an associated error code).
728
731
pub fn struct_err ( & self , msg : & str ) -> DiagnosticBuilder < ' _ > {
729
- DiagnosticBuilder :: new ( self , Level :: Error , msg)
732
+ DiagnosticBuilder :: new ( self , Level :: Error { lint : false } , msg)
733
+ }
734
+
735
+ /// This should only be used by `rustc_middle::lint::struct_lint_level`. Do not use it for hard errors.
736
+ #[ doc( hidden) ]
737
+ pub fn struct_err_lint ( & self , msg : & str ) -> DiagnosticBuilder < ' _ > {
738
+ DiagnosticBuilder :: new ( self , Level :: Error { lint : true } , msg)
730
739
}
731
740
732
741
/// Construct a builder at the `Error` level with the `msg` and the `code`.
@@ -790,11 +799,14 @@ impl Handler {
790
799
}
791
800
792
801
pub fn span_err ( & self , span : impl Into < MultiSpan > , msg : & str ) {
793
- self . emit_diag_at_span ( Diagnostic :: new ( Error , msg) , span) ;
802
+ self . emit_diag_at_span ( Diagnostic :: new ( Error { lint : false } , msg) , span) ;
794
803
}
795
804
796
805
pub fn span_err_with_code ( & self , span : impl Into < MultiSpan > , msg : & str , code : DiagnosticId ) {
797
- self . emit_diag_at_span ( Diagnostic :: new_with_code ( Error , Some ( code) , msg) , span) ;
806
+ self . emit_diag_at_span (
807
+ Diagnostic :: new_with_code ( Error { lint : false } , Some ( code) , msg) ,
808
+ span,
809
+ ) ;
798
810
}
799
811
800
812
pub fn span_warn ( & self , span : impl Into < MultiSpan > , msg : & str ) {
@@ -862,6 +874,9 @@ impl Handler {
862
874
pub fn has_errors ( & self ) -> bool {
863
875
self . inner . borrow ( ) . has_errors ( )
864
876
}
877
+ pub fn has_errors_or_lint_errors ( & self ) -> bool {
878
+ self . inner . borrow ( ) . has_errors_or_lint_errors ( )
879
+ }
865
880
pub fn has_errors_or_delayed_span_bugs ( & self ) -> bool {
866
881
self . inner . borrow ( ) . has_errors_or_delayed_span_bugs ( )
867
882
}
@@ -979,7 +994,11 @@ impl HandlerInner {
979
994
}
980
995
}
981
996
if diagnostic. is_error ( ) {
982
- self . bump_err_count ( ) ;
997
+ if matches ! ( diagnostic. level, Level :: Error { lint: true } ) {
998
+ self . bump_lint_err_count ( ) ;
999
+ } else {
1000
+ self . bump_err_count ( ) ;
1001
+ }
983
1002
} else {
984
1003
self . bump_warn_count ( ) ;
985
1004
}
@@ -1073,11 +1092,14 @@ impl HandlerInner {
1073
1092
fn has_errors ( & self ) -> bool {
1074
1093
self . err_count ( ) > 0
1075
1094
}
1095
+ fn has_errors_or_lint_errors ( & self ) -> bool {
1096
+ self . has_errors ( ) || self . lint_err_count > 0
1097
+ }
1076
1098
fn has_errors_or_delayed_span_bugs ( & self ) -> bool {
1077
1099
self . has_errors ( ) || !self . delayed_span_bugs . is_empty ( )
1078
1100
}
1079
1101
fn has_any_message ( & self ) -> bool {
1080
- self . err_count ( ) > 0 || self . warn_count > 0
1102
+ self . err_count ( ) > 0 || self . lint_err_count > 0 || self . warn_count > 0
1081
1103
}
1082
1104
1083
1105
fn abort_if_errors ( & mut self ) {
@@ -1131,7 +1153,7 @@ impl HandlerInner {
1131
1153
}
1132
1154
1133
1155
fn err ( & mut self , msg : & str ) {
1134
- self . emit_error ( Error , msg) ;
1156
+ self . emit_error ( Error { lint : false } , msg) ;
1135
1157
}
1136
1158
1137
1159
/// Emit an error; level should be `Error` or `Fatal`.
@@ -1167,6 +1189,11 @@ impl HandlerInner {
1167
1189
}
1168
1190
}
1169
1191
1192
+ fn bump_lint_err_count ( & mut self ) {
1193
+ self . lint_err_count += 1 ;
1194
+ self . panic_if_treat_err_as_bug ( ) ;
1195
+ }
1196
+
1170
1197
fn bump_err_count ( & mut self ) {
1171
1198
self . err_count += 1 ;
1172
1199
self . panic_if_treat_err_as_bug ( ) ;
@@ -1210,7 +1237,10 @@ impl DelayedDiagnostic {
1210
1237
pub enum Level {
1211
1238
Bug ,
1212
1239
Fatal ,
1213
- Error ,
1240
+ Error {
1241
+ /// If this error comes from a lint, don't abort compilation even when abort_if_errors() is called.
1242
+ lint : bool ,
1243
+ } ,
1214
1244
Warning ,
1215
1245
Note ,
1216
1246
Help ,
@@ -1229,7 +1259,7 @@ impl Level {
1229
1259
fn color ( self ) -> ColorSpec {
1230
1260
let mut spec = ColorSpec :: new ( ) ;
1231
1261
match self {
1232
- Bug | Fatal | Error => {
1262
+ Bug | Fatal | Error { .. } => {
1233
1263
spec. set_fg ( Some ( Color :: Red ) ) . set_intense ( true ) ;
1234
1264
}
1235
1265
Warning => {
@@ -1250,7 +1280,7 @@ impl Level {
1250
1280
pub fn to_str ( self ) -> & ' static str {
1251
1281
match self {
1252
1282
Bug => "error: internal compiler error" ,
1253
- Fatal | Error => "error" ,
1283
+ Fatal | Error { .. } => "error" ,
1254
1284
Warning => "warning" ,
1255
1285
Note => "note" ,
1256
1286
Help => "help" ,
0 commit comments