@@ -182,6 +182,15 @@ fn ident_can_begin_type(name: Symbol, span: Span, is_raw: bool) -> bool {
182
182
. contains ( & name)
183
183
}
184
184
185
+ /// A hack used to pass AST fragments to attribute and derive macros
186
+ /// as a single nonterminal token instead of a token stream.
187
+ /// FIXME: It needs to be removed, but there are some compatibility issues (see #73345).
188
+ #[ derive( Clone , PartialEq , RustcEncodable , RustcDecodable , Debug , HashStable_Generic ) ]
189
+ pub enum FlattenGroup {
190
+ Yes ,
191
+ No ,
192
+ }
193
+
185
194
#[ derive( Clone , PartialEq , RustcEncodable , RustcDecodable , Debug , HashStable_Generic ) ]
186
195
pub enum TokenKind {
187
196
/* Expression-operator symbols. */
@@ -236,7 +245,7 @@ pub enum TokenKind {
236
245
/// treat regular and interpolated lifetime identifiers in the same way.
237
246
Lifetime ( Symbol ) ,
238
247
239
- Interpolated ( Lrc < Nonterminal > ) ,
248
+ Interpolated ( Lrc < Nonterminal > , FlattenGroup ) ,
240
249
241
250
// Can be expanded into several tokens.
242
251
/// A doc comment.
@@ -343,7 +352,7 @@ impl Token {
343
352
/// if they keep spans or perform edition checks.
344
353
pub fn uninterpolated_span ( & self ) -> Span {
345
354
match & self . kind {
346
- Interpolated ( nt) => nt. span ( ) ,
355
+ Interpolated ( nt, _ ) => nt. span ( ) ,
347
356
_ => self . span ,
348
357
}
349
358
}
@@ -382,7 +391,7 @@ impl Token {
382
391
ModSep | // global path
383
392
Lifetime ( ..) | // labeled loop
384
393
Pound => true , // expression attributes
385
- Interpolated ( ref nt) => match * * nt {
394
+ Interpolated ( ref nt, _ ) => match * * nt {
386
395
NtLiteral ( ..) |
387
396
NtExpr ( ..) |
388
397
NtBlock ( ..) |
@@ -408,7 +417,7 @@ impl Token {
408
417
Lifetime ( ..) | // lifetime bound in trait object
409
418
Lt | BinOp ( Shl ) | // associated path
410
419
ModSep => true , // global path
411
- Interpolated ( ref nt) => match * * nt {
420
+ Interpolated ( ref nt, _ ) => match * * nt {
412
421
NtTy ( ..) | NtPath ( ..) => true ,
413
422
_ => false ,
414
423
} ,
@@ -420,7 +429,7 @@ impl Token {
420
429
pub fn can_begin_const_arg ( & self ) -> bool {
421
430
match self . kind {
422
431
OpenDelim ( Brace ) => true ,
423
- Interpolated ( ref nt) => match * * nt {
432
+ Interpolated ( ref nt, _ ) => match * * nt {
424
433
NtExpr ( ..) | NtBlock ( ..) | NtLiteral ( ..) => true ,
425
434
_ => false ,
426
435
} ,
@@ -455,7 +464,7 @@ impl Token {
455
464
match self . uninterpolate ( ) . kind {
456
465
Literal ( ..) | BinOp ( Minus ) => true ,
457
466
Ident ( name, false ) if name. is_bool_lit ( ) => true ,
458
- Interpolated ( ref nt) => match & * * nt {
467
+ Interpolated ( ref nt, _ ) => match & * * nt {
459
468
NtLiteral ( _) => true ,
460
469
NtExpr ( e) => match & e. kind {
461
470
ast:: ExprKind :: Lit ( _) => true ,
@@ -476,7 +485,7 @@ impl Token {
476
485
// otherwise returns the original token.
477
486
pub fn uninterpolate ( & self ) -> Cow < ' _ , Token > {
478
487
match & self . kind {
479
- Interpolated ( nt) => match * * nt {
488
+ Interpolated ( nt, _ ) => match * * nt {
480
489
NtIdent ( ident, is_raw) => {
481
490
Cow :: Owned ( Token :: new ( Ident ( ident. name , is_raw) , ident. span ) )
482
491
}
@@ -523,7 +532,7 @@ impl Token {
523
532
524
533
/// Returns `true` if the token is an interpolated path.
525
534
fn is_path ( & self ) -> bool {
526
- if let Interpolated ( ref nt) = self . kind {
535
+ if let Interpolated ( ref nt, _ ) = self . kind {
527
536
if let NtPath ( ..) = * * nt {
528
537
return true ;
529
538
}
@@ -535,7 +544,7 @@ impl Token {
535
544
/// That is, is this a pre-parsed expression dropped into the token stream
536
545
/// (which happens while parsing the result of macro expansion)?
537
546
pub fn is_whole_expr ( & self ) -> bool {
538
- if let Interpolated ( ref nt) = self . kind {
547
+ if let Interpolated ( ref nt, _ ) = self . kind {
539
548
if let NtExpr ( _) | NtLiteral ( _) | NtPath ( _) | NtIdent ( ..) | NtBlock ( _) = * * nt {
540
549
return true ;
541
550
}
@@ -546,7 +555,7 @@ impl Token {
546
555
547
556
// Is the token an interpolated block (`$b:block`)?
548
557
pub fn is_whole_block ( & self ) -> bool {
549
- if let Interpolated ( ref nt) = self . kind {
558
+ if let Interpolated ( ref nt, _ ) = self . kind {
550
559
if let NtBlock ( ..) = * * nt {
551
560
return true ;
552
561
}
@@ -724,7 +733,7 @@ impl Token {
724
733
b == d && ( a == c || a == kw:: DollarCrate || c == kw:: DollarCrate )
725
734
}
726
735
727
- ( & Interpolated ( _ ) , & Interpolated ( _ ) ) => false ,
736
+ ( & Interpolated ( .. ) , & Interpolated ( .. ) ) => false ,
728
737
729
738
_ => panic ! ( "forgot to add a token?" ) ,
730
739
}
0 commit comments