@@ -49,7 +49,7 @@ enum DestructuredFloat {
49
49
/// 1.2 | 1.2e3
50
50
MiddleDot ( Symbol , Span , Span , Symbol , Span ) ,
51
51
/// Invalid
52
- Error ,
52
+ Error ( ErrorGuaranteed ) ,
53
53
}
54
54
55
55
impl < ' a > Parser < ' a > {
@@ -989,7 +989,7 @@ impl<'a> Parser<'a> {
989
989
self . mk_expr_tuple_field_access ( lo, ident1_span, base, sym1, None ) ;
990
990
self . mk_expr_tuple_field_access ( lo, ident2_span, base1, sym2, suffix)
991
991
}
992
- DestructuredFloat :: Error => base,
992
+ DestructuredFloat :: Error ( _ ) => base,
993
993
} )
994
994
}
995
995
_ => {
@@ -999,7 +999,7 @@ impl<'a> Parser<'a> {
999
999
}
1000
1000
}
1001
1001
1002
- fn error_unexpected_after_dot ( & self ) {
1002
+ fn error_unexpected_after_dot ( & self ) -> ErrorGuaranteed {
1003
1003
let actual = pprust:: token_to_string ( & self . token ) ;
1004
1004
let span = self . token . span ;
1005
1005
let sm = self . psess . source_map ( ) ;
@@ -1009,7 +1009,7 @@ impl<'a> Parser<'a> {
1009
1009
}
1010
1010
_ => ( span, actual) ,
1011
1011
} ;
1012
- self . dcx ( ) . emit_err ( errors:: UnexpectedTokenAfterDot { span, actual } ) ;
1012
+ self . dcx ( ) . emit_err ( errors:: UnexpectedTokenAfterDot { span, actual } )
1013
1013
}
1014
1014
1015
1015
// We need an identifier or integer, but the next token is a float.
@@ -1097,8 +1097,8 @@ impl<'a> Parser<'a> {
1097
1097
// 1.2e+3 | 1.2e-3
1098
1098
[ IdentLike ( _) , Punct ( '.' ) , IdentLike ( _) , Punct ( '+' | '-' ) , IdentLike ( _) ] => {
1099
1099
// See the FIXME about `TokenCursor` above.
1100
- self . error_unexpected_after_dot ( ) ;
1101
- DestructuredFloat :: Error
1100
+ let guar = self . error_unexpected_after_dot ( ) ;
1101
+ DestructuredFloat :: Error ( guar )
1102
1102
}
1103
1103
_ => panic ! ( "unexpected components in a float token: {components:?}" ) ,
1104
1104
}
@@ -1164,7 +1164,7 @@ impl<'a> Parser<'a> {
1164
1164
fields. insert ( start_idx, Ident :: new ( symbol2, span2) ) ;
1165
1165
fields. insert ( start_idx, Ident :: new ( symbol1, span1) ) ;
1166
1166
}
1167
- DestructuredFloat :: Error => {
1167
+ DestructuredFloat :: Error ( _ ) => {
1168
1168
trailing_dot = None ;
1169
1169
fields. insert ( start_idx, Ident :: new ( symbol, self . prev_token . span ) ) ;
1170
1170
}
0 commit comments