Skip to content

Commit a8840d7

Browse files
committed
syntax: add 'in' keyword
1 parent 436d9fa commit a8840d7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/libsyntax/parse/token.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,7 @@ fn mk_fresh_ident_interner() -> @ident_interner {
474474
"while", // 64
475475

476476
"be", // 65
477+
"in", // 66
477478
];
478479

479480
@ident_interner {
@@ -572,6 +573,7 @@ pub mod keywords {
572573
For,
573574
If,
574575
Impl,
576+
In,
575577
Let,
576578
__Log,
577579
Loop,
@@ -614,6 +616,7 @@ pub mod keywords {
614616
For => ident { name: 42, ctxt: 0 },
615617
If => ident { name: 43, ctxt: 0 },
616618
Impl => ident { name: 44, ctxt: 0 },
619+
In => ident { name: 66, ctxt: 0 },
617620
Let => ident { name: 45, ctxt: 0 },
618621
__Log => ident { name: 46, ctxt: 0 },
619622
Loop => ident { name: 47, ctxt: 0 },

0 commit comments

Comments
 (0)