@@ -924,6 +924,7 @@ pub(crate) struct TagIterator<'a, 'tcx> {
924
924
data : & ' a str ,
925
925
is_in_attribute_block : bool ,
926
926
extra : Option < & ' a ExtraInfo < ' tcx > > ,
927
+ is_error : bool ,
927
928
}
928
929
929
930
#[ derive( Clone , Debug , Eq , PartialEq ) ]
@@ -950,13 +951,20 @@ struct Indices {
950
951
951
952
impl < ' a , ' tcx > TagIterator < ' a , ' tcx > {
952
953
pub ( crate ) fn new ( data : & ' a str , extra : Option < & ' a ExtraInfo < ' tcx > > ) -> Self {
953
- Self { inner : data. char_indices ( ) . peekable ( ) , data, is_in_attribute_block : false , extra }
954
+ Self {
955
+ inner : data. char_indices ( ) . peekable ( ) ,
956
+ data,
957
+ is_in_attribute_block : false ,
958
+ extra,
959
+ is_error : false ,
960
+ }
954
961
}
955
962
956
- fn emit_error ( & self , err : impl Into < DiagMessage > ) {
963
+ fn emit_error ( & mut self , err : impl Into < DiagMessage > ) {
957
964
if let Some ( extra) = self . extra {
958
965
extra. error_invalid_codeblock_attr ( err) ;
959
966
}
967
+ self . is_error = true ;
960
968
}
961
969
962
970
fn skip_separators ( & mut self ) -> Option < usize > {
@@ -1154,6 +1162,9 @@ impl<'a, 'tcx> Iterator for TagIterator<'a, 'tcx> {
1154
1162
type Item = LangStringToken < ' a > ;
1155
1163
1156
1164
fn next ( & mut self ) -> Option < Self :: Item > {
1165
+ if self . is_error {
1166
+ return None ;
1167
+ }
1157
1168
let Some ( start) = self . skip_separators ( ) else {
1158
1169
if self . is_in_attribute_block {
1159
1170
self . emit_error ( "unclosed attribute block (`{}`): missing `}` at the end" ) ;
@@ -1342,14 +1353,15 @@ impl LangString {
1342
1353
}
1343
1354
} ;
1344
1355
1345
- call ( & mut TagIterator :: new ( string, extra) ) ;
1356
+ let mut tag_iter = TagIterator :: new ( string, extra) ;
1357
+ call ( & mut tag_iter) ;
1346
1358
1347
1359
// ignore-foo overrides ignore
1348
1360
if !ignores. is_empty ( ) {
1349
1361
data. ignore = Ignore :: Some ( ignores) ;
1350
1362
}
1351
1363
1352
- data. rust &= !seen_custom_tag && ( !seen_other_tags || seen_rust_tags) ;
1364
+ data. rust &= !seen_custom_tag && ( !seen_other_tags || seen_rust_tags) && !tag_iter . is_error ;
1353
1365
1354
1366
data
1355
1367
}
0 commit comments