@@ -516,66 +516,65 @@ declare_special_idents_and_keywords! {
516
516
( 9 , unnamed_field, "<unnamed_field>" ) ;
517
517
( 10 , type_self, "Self" ) ;
518
518
( 11 , prelude_import, "prelude_import" ) ;
519
- ( 12 , FullRange , "FullRange" ) ;
520
519
}
521
520
522
521
pub mod keywords {
523
522
// These ones are variants of the Keyword enum
524
523
525
524
' strict:
526
- ( 13 , As , "as" ) ;
527
- ( 14 , Break , "break" ) ;
528
- ( 15 , Crate , "crate" ) ;
529
- ( 16 , Else , "else" ) ;
530
- ( 17 , Enum , "enum" ) ;
531
- ( 18 , Extern , "extern" ) ;
532
- ( 19 , False , "false" ) ;
533
- ( 20 , Fn , "fn" ) ;
534
- ( 21 , For , "for" ) ;
535
- ( 22 , If , "if" ) ;
536
- ( 23 , Impl , "impl" ) ;
537
- ( 24 , In , "in" ) ;
538
- ( 25 , Let , "let" ) ;
539
- ( 26 , Loop , "loop" ) ;
540
- ( 27 , Match , "match" ) ;
541
- ( 28 , Mod , "mod" ) ;
542
- ( 29 , Move , "move" ) ;
543
- ( 30 , Mut , "mut" ) ;
544
- ( 31 , Pub , "pub" ) ;
545
- ( 32 , Ref , "ref" ) ;
546
- ( 33 , Return , "return" ) ;
525
+ ( 12 , As , "as" ) ;
526
+ ( 13 , Break , "break" ) ;
527
+ ( 14 , Crate , "crate" ) ;
528
+ ( 15 , Else , "else" ) ;
529
+ ( 16 , Enum , "enum" ) ;
530
+ ( 17 , Extern , "extern" ) ;
531
+ ( 18 , False , "false" ) ;
532
+ ( 19 , Fn , "fn" ) ;
533
+ ( 20 , For , "for" ) ;
534
+ ( 21 , If , "if" ) ;
535
+ ( 22 , Impl , "impl" ) ;
536
+ ( 23 , In , "in" ) ;
537
+ ( 24 , Let , "let" ) ;
538
+ ( 25 , Loop , "loop" ) ;
539
+ ( 26 , Match , "match" ) ;
540
+ ( 27 , Mod , "mod" ) ;
541
+ ( 28 , Move , "move" ) ;
542
+ ( 29 , Mut , "mut" ) ;
543
+ ( 30 , Pub , "pub" ) ;
544
+ ( 31 , Ref , "ref" ) ;
545
+ ( 32 , Return , "return" ) ;
547
546
// Static and Self are also special idents (prefill de-dupes)
548
547
( super :: STATIC_KEYWORD_NAME_NUM , Static , "static" ) ;
549
548
( super :: SELF_KEYWORD_NAME_NUM , Self , "self" ) ;
550
- ( 34 , Struct , "struct" ) ;
549
+ ( 33 , Struct , "struct" ) ;
551
550
( super :: SUPER_KEYWORD_NAME_NUM , Super , "super" ) ;
552
- ( 35 , True , "true" ) ;
553
- ( 36 , Trait , "trait" ) ;
554
- ( 37 , Type , "type" ) ;
555
- ( 38 , Unsafe , "unsafe" ) ;
556
- ( 39 , Use , "use" ) ;
557
- ( 40 , Virtual , "virtual" ) ;
558
- ( 41 , While , "while" ) ;
559
- ( 42 , Continue , "continue" ) ;
560
- ( 43 , Proc , "proc" ) ;
561
- ( 44 , Box , "box" ) ;
562
- ( 45 , Const , "const" ) ;
563
- ( 46 , Where , "where" ) ;
551
+ ( 34 , True , "true" ) ;
552
+ ( 35 , Trait , "trait" ) ;
553
+ ( 36 , Type , "type" ) ;
554
+ ( 37 , Unsafe , "unsafe" ) ;
555
+ ( 38 , Use , "use" ) ;
556
+ ( 39 , Virtual , "virtual" ) ;
557
+ ( 40 , While , "while" ) ;
558
+ ( 41 , Continue , "continue" ) ;
559
+ ( 42 , Proc , "proc" ) ;
560
+ ( 43 , Box , "box" ) ;
561
+ ( 44 , Const , "const" ) ;
562
+ ( 45 , Where , "where" ) ;
564
563
' reserved:
565
- ( 47 , Alignof , "alignof" ) ;
566
- ( 48 , Be , "be" ) ;
567
- ( 49 , Offsetof , "offsetof" ) ;
568
- ( 50 , Priv , "priv" ) ;
569
- ( 51 , Pure , "pure" ) ;
570
- ( 52 , Sizeof , "sizeof" ) ;
571
- ( 53 , Typeof , "typeof" ) ;
572
- ( 54 , Unsized , "unsized" ) ;
573
- ( 55 , Yield , "yield" ) ;
574
- ( 56 , Do , "do" ) ;
575
- ( 57 , Abstract , "abstract" ) ;
576
- ( 58 , Final , "final" ) ;
577
- ( 59 , Override , "override" ) ;
578
- ( 60 , Macro , "macro" ) ;
564
+ ( 46 , Alignof , "alignof" ) ;
565
+ ( 47 , Be , "be" ) ;
566
+ ( 48 , Offsetof , "offsetof" ) ;
567
+ ( 49 , Priv , "priv" ) ;
568
+ ( 50 , Pure , "pure" ) ;
569
+ ( 51 , Sizeof , "sizeof" ) ;
570
+ ( 52 , Typeof , "typeof" ) ;
571
+ ( 53 , Unsized , "unsized" ) ;
572
+ ( 54 , Yield , "yield" ) ;
573
+ ( 55 , Do , "do" ) ;
574
+ ( 56 , Abstract , "abstract" ) ;
575
+ ( 57 , Final , "final" ) ;
576
+ ( 58 , Override , "override" ) ;
577
+ ( 59 , Macro , "macro" ) ;
579
578
}
580
579
}
581
580
0 commit comments