@@ -232,7 +232,7 @@ pub fn to_str(t: &Token) -> String {
232
232
/* Name components */
233
233
IDENT ( s, _) => get_ident ( s) . get ( ) . to_string ( ) ,
234
234
LIFETIME ( s) => {
235
- ( format ! ( "' {}" , get_ident( s) ) ) . to_string ( )
235
+ ( format ! ( "{}" , get_ident( s) ) ) . to_string ( )
236
236
}
237
237
UNDERSCORE => "_" . to_string ( ) ,
238
238
@@ -433,71 +433,72 @@ declare_special_idents_and_keywords! {
433
433
( 0 , invalid, "" ) ;
434
434
( super :: SELF_KEYWORD_NAME , self_, "self" ) ;
435
435
( super :: STATIC_KEYWORD_NAME , statik, "static" ) ;
436
+ ( 3 , static_lifetime, "'static" ) ;
436
437
437
438
// for matcher NTs
438
- ( 3 , tt, "tt" ) ;
439
- ( 4 , matchers, "matchers" ) ;
439
+ ( 4 , tt, "tt" ) ;
440
+ ( 5 , matchers, "matchers" ) ;
440
441
441
442
// outside of libsyntax
442
- ( 5 , clownshoe_abi, "__rust_abi" ) ;
443
- ( 6 , opaque, "<opaque>" ) ;
444
- ( 7 , unnamed_field, "<unnamed_field>" ) ;
445
- ( 8 , type_self, "Self" ) ;
443
+ ( 6 , clownshoe_abi, "__rust_abi" ) ;
444
+ ( 7 , opaque, "<opaque>" ) ;
445
+ ( 8 , unnamed_field, "<unnamed_field>" ) ;
446
+ ( 9 , type_self, "Self" ) ;
446
447
}
447
448
448
449
pub mod keywords {
449
450
// These ones are variants of the Keyword enum
450
451
451
452
' strict:
452
- ( 9 , As , "as" ) ;
453
- ( 10 , Break , "break" ) ;
454
- ( 11 , Crate , "crate" ) ;
455
- ( 12 , Else , "else" ) ;
456
- ( 13 , Enum , "enum" ) ;
457
- ( 14 , Extern , "extern" ) ;
458
- ( 15 , False , "false" ) ;
459
- ( 16 , Fn , "fn" ) ;
460
- ( 17 , For , "for" ) ;
461
- ( 18 , If , "if" ) ;
462
- ( 19 , Impl , "impl" ) ;
463
- ( 20 , In , "in" ) ;
464
- ( 21 , Let , "let" ) ;
465
- ( 22 , Loop , "loop" ) ;
466
- ( 23 , Match , "match" ) ;
467
- ( 24 , Mod , "mod" ) ;
468
- ( 25 , Mut , "mut" ) ;
469
- ( 26 , Once , "once" ) ;
470
- ( 27 , Pub , "pub" ) ;
471
- ( 28 , Ref , "ref" ) ;
472
- ( 29 , Return , "return" ) ;
453
+ ( 10 , As , "as" ) ;
454
+ ( 11 , Break , "break" ) ;
455
+ ( 12 , Crate , "crate" ) ;
456
+ ( 13 , Else , "else" ) ;
457
+ ( 14 , Enum , "enum" ) ;
458
+ ( 15 , Extern , "extern" ) ;
459
+ ( 16 , False , "false" ) ;
460
+ ( 17 , Fn , "fn" ) ;
461
+ ( 18 , For , "for" ) ;
462
+ ( 19 , If , "if" ) ;
463
+ ( 20 , Impl , "impl" ) ;
464
+ ( 21 , In , "in" ) ;
465
+ ( 22 , Let , "let" ) ;
466
+ ( 23 , Loop , "loop" ) ;
467
+ ( 24 , Match , "match" ) ;
468
+ ( 25 , Mod , "mod" ) ;
469
+ ( 26 , Mut , "mut" ) ;
470
+ ( 27 , Once , "once" ) ;
471
+ ( 28 , Pub , "pub" ) ;
472
+ ( 29 , Ref , "ref" ) ;
473
+ ( 30 , Return , "return" ) ;
473
474
// Static and Self are also special idents (prefill de-dupes)
474
475
( super :: STATIC_KEYWORD_NAME , Static , "static" ) ;
475
476
( super :: SELF_KEYWORD_NAME , Self , "self" ) ;
476
- ( 30 , Struct , "struct" ) ;
477
- ( 31 , Super , "super" ) ;
478
- ( 32 , True , "true" ) ;
479
- ( 33 , Trait , "trait" ) ;
480
- ( 34 , Type , "type" ) ;
481
- ( 35 , Unsafe , "unsafe" ) ;
482
- ( 36 , Use , "use" ) ;
483
- ( 37 , Virtual , "virtual" ) ;
484
- ( 38 , While , "while" ) ;
485
- ( 39 , Continue , "continue" ) ;
486
- ( 40 , Proc , "proc" ) ;
487
- ( 41 , Box , "box" ) ;
477
+ ( 31 , Struct , "struct" ) ;
478
+ ( 32 , Super , "super" ) ;
479
+ ( 33 , True , "true" ) ;
480
+ ( 34 , Trait , "trait" ) ;
481
+ ( 35 , Type , "type" ) ;
482
+ ( 36 , Unsafe , "unsafe" ) ;
483
+ ( 37 , Use , "use" ) ;
484
+ ( 38 , Virtual , "virtual" ) ;
485
+ ( 39 , While , "while" ) ;
486
+ ( 40 , Continue , "continue" ) ;
487
+ ( 41 , Proc , "proc" ) ;
488
+ ( 42 , Box , "box" ) ;
488
489
489
490
' reserved:
490
- ( 42 , Alignof , "alignof" ) ;
491
- ( 43 , Be , "be" ) ;
492
- ( 44 , Const , "const" ) ;
493
- ( 45 , Offsetof , "offsetof" ) ;
494
- ( 46 , Priv , "priv" ) ;
495
- ( 47 , Pure , "pure" ) ;
496
- ( 48 , Sizeof , "sizeof" ) ;
497
- ( 49 , Typeof , "typeof" ) ;
498
- ( 50 , Unsized , "unsized" ) ;
499
- ( 51 , Yield , "yield" ) ;
500
- ( 52 , Do , "do" ) ;
491
+ ( 43 , Alignof , "alignof" ) ;
492
+ ( 44 , Be , "be" ) ;
493
+ ( 45 , Const , "const" ) ;
494
+ ( 46 , Offsetof , "offsetof" ) ;
495
+ ( 47 , Priv , "priv" ) ;
496
+ ( 48 , Pure , "pure" ) ;
497
+ ( 49 , Sizeof , "sizeof" ) ;
498
+ ( 50 , Typeof , "typeof" ) ;
499
+ ( 51 , Unsized , "unsized" ) ;
500
+ ( 52 , Yield , "yield" ) ;
501
+ ( 53 , Do , "do" ) ;
501
502
}
502
503
}
503
504
0 commit comments