Skip to content

Commit a192941

Browse files
committed
Update languages
1 parent da68914 commit a192941

File tree

3 files changed

+45
-45
lines changed

3 files changed

+45
-45
lines changed

src/language_rust.rs

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -50,48 +50,48 @@ pub enum Rust {
5050
Str = 45,
5151
Char = 46,
5252
NonSpecialTokenToken1 = 47,
53-
As = 48,
54-
Async = 49,
55-
Await = 50,
56-
Break = 51,
57-
Const = 52,
58-
Continue = 53,
59-
Default = 54,
60-
Enum = 55,
61-
Fn = 56,
62-
For = 57,
63-
If = 58,
64-
Impl = 59,
65-
Let = 60,
66-
Loop = 61,
67-
Match = 62,
68-
Mod = 63,
69-
Pub = 64,
70-
Return = 65,
71-
Static = 66,
72-
Struct = 67,
73-
Trait = 68,
74-
Type2 = 69,
75-
Union = 70,
76-
Unsafe = 71,
77-
Use = 72,
78-
Where = 73,
79-
While = 74,
80-
HASH = 75,
81-
BANG = 76,
82-
EQ = 77,
83-
COMMA = 78,
84-
Extern = 79,
85-
Ref = 80,
86-
DASHGT = 81,
87-
LT = 82,
88-
GT = 83,
89-
COLONCOLON = 84,
90-
UNDERSCORE = 85,
91-
AMP = 86,
92-
DOTDOTDOT = 87,
93-
In = 88,
94-
SQUOTE = 89,
53+
SQUOTE = 48,
54+
As = 49,
55+
Async = 50,
56+
Await = 51,
57+
Break = 52,
58+
Const = 53,
59+
Continue = 54,
60+
Default = 55,
61+
Enum = 56,
62+
Fn = 57,
63+
For = 58,
64+
If = 59,
65+
Impl = 60,
66+
Let = 61,
67+
Loop = 62,
68+
Match = 63,
69+
Mod = 64,
70+
Pub = 65,
71+
Return = 66,
72+
Static = 67,
73+
Struct = 68,
74+
Trait = 69,
75+
Type2 = 70,
76+
Union = 71,
77+
Unsafe = 72,
78+
Use = 73,
79+
Where = 74,
80+
While = 75,
81+
HASH = 76,
82+
BANG = 77,
83+
EQ = 78,
84+
COMMA = 79,
85+
Extern = 80,
86+
Ref = 81,
87+
DASHGT = 82,
88+
LT = 83,
89+
GT = 84,
90+
COLONCOLON = 85,
91+
UNDERSCORE = 86,
92+
AMP = 87,
93+
DOTDOTDOT = 88,
94+
In = 89,
9595
LT2 = 90,
9696
Dyn = 91,
9797
MutableSpecifier = 92,
@@ -372,6 +372,7 @@ impl Into<&'static str> for Rust {
372372
Rust::Str => "str",
373373
Rust::Char => "char",
374374
Rust::NonSpecialTokenToken1 => "_non_special_token_token1",
375+
Rust::SQUOTE => "'",
375376
Rust::As => "as",
376377
Rust::Async => "async",
377378
Rust::Await => "await",
@@ -413,7 +414,6 @@ impl Into<&'static str> for Rust {
413414
Rust::AMP => "&",
414415
Rust::DOTDOTDOT => "...",
415416
Rust::In => "in",
416-
Rust::SQUOTE => "'",
417417
Rust::LT2 => "<",
418418
Rust::Dyn => "dyn",
419419
Rust::MutableSpecifier => "mutable_specifier",

0 commit comments

Comments
 (0)