@@ -251,7 +251,7 @@ impl Token {
251
251
Lt | BinOp ( Shl ) | // associated path
252
252
ModSep => true , // global path
253
253
Interpolated ( ref nt) => match nt. 0 {
254
- NtIdent ( ..) | NtTy ( ..) | NtPath ( ..) => true ,
254
+ NtIdent ( ..) | NtTy ( ..) | NtPath ( ..) | NtLifetime ( .. ) => true ,
255
255
_ => false ,
256
256
} ,
257
257
_ => false ,
@@ -314,14 +314,26 @@ impl Token {
314
314
false
315
315
}
316
316
317
- /// Returns `true` if the token is a lifetime.
318
- pub fn is_lifetime ( & self ) -> bool {
317
+ /// Returns a lifetime with the span and a dummy id if it is a lifetime,
318
+ /// or the original lifetime if it is an interpolated lifetime, ignoring
319
+ /// the span.
320
+ pub fn lifetime ( & self , span : Span ) -> Option < ast:: Lifetime > {
319
321
match * self {
320
- Lifetime ( ..) => true ,
321
- _ => false ,
322
+ Lifetime ( ident) =>
323
+ Some ( ast:: Lifetime { ident : ident, span : span, id : ast:: DUMMY_NODE_ID } ) ,
324
+ Interpolated ( ref nt) => match nt. 0 {
325
+ NtLifetime ( lifetime) => Some ( lifetime) ,
326
+ _ => None ,
327
+ } ,
328
+ _ => None ,
322
329
}
323
330
}
324
331
332
+ /// Returns `true` if the token is a lifetime.
333
+ pub fn is_lifetime ( & self ) -> bool {
334
+ self . lifetime ( syntax_pos:: DUMMY_SP ) . is_some ( )
335
+ }
336
+
325
337
/// Returns `true` if the token is either the `mut` or `const` keyword.
326
338
pub fn is_mutability ( & self ) -> bool {
327
339
self . is_keyword ( keywords:: Mut ) ||
@@ -486,6 +498,10 @@ impl Token {
486
498
let token = Token :: Ident ( ident. node ) ;
487
499
tokens = Some ( TokenTree :: Token ( ident. span , token) . into ( ) ) ;
488
500
}
501
+ Nonterminal :: NtLifetime ( lifetime) => {
502
+ let token = Token :: Lifetime ( lifetime. ident ) ;
503
+ tokens = Some ( TokenTree :: Token ( lifetime. span , token) . into ( ) ) ;
504
+ }
489
505
Nonterminal :: NtTT ( ref tt) => {
490
506
tokens = Some ( tt. clone ( ) . into ( ) ) ;
491
507
}
@@ -524,6 +540,7 @@ pub enum Nonterminal {
524
540
NtGenerics ( ast:: Generics ) ,
525
541
NtWhereClause ( ast:: WhereClause ) ,
526
542
NtArg ( ast:: Arg ) ,
543
+ NtLifetime ( ast:: Lifetime ) ,
527
544
}
528
545
529
546
impl fmt:: Debug for Nonterminal {
@@ -546,6 +563,7 @@ impl fmt::Debug for Nonterminal {
546
563
NtWhereClause ( ..) => f. pad ( "NtWhereClause(..)" ) ,
547
564
NtArg ( ..) => f. pad ( "NtArg(..)" ) ,
548
565
NtVis ( ..) => f. pad ( "NtVis(..)" ) ,
566
+ NtLifetime ( ..) => f. pad ( "NtLifetime(..)" ) ,
549
567
}
550
568
}
551
569
}
0 commit comments