We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 436d9fa commit a8840d7Copy full SHA for a8840d7
src/libsyntax/parse/token.rs
@@ -474,6 +474,7 @@ fn mk_fresh_ident_interner() -> @ident_interner {
474
"while", // 64
475
476
"be", // 65
477
+ "in", // 66
478
];
479
480
@ident_interner {
@@ -572,6 +573,7 @@ pub mod keywords {
572
573
For,
574
If,
575
Impl,
576
+ In,
577
Let,
578
__Log,
579
Loop,
@@ -614,6 +616,7 @@ pub mod keywords {
614
616
For => ident { name: 42, ctxt: 0 },
615
617
If => ident { name: 43, ctxt: 0 },
618
Impl => ident { name: 44, ctxt: 0 },
619
+ In => ident { name: 66, ctxt: 0 },
620
Let => ident { name: 45, ctxt: 0 },
621
__Log => ident { name: 46, ctxt: 0 },
622
Loop => ident { name: 47, ctxt: 0 },
0 commit comments