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 a8840d7 commit 9a2d183Copy full SHA for 9a2d183
src/libsyntax/parse/token.rs
@@ -475,6 +475,7 @@ fn mk_fresh_ident_interner() -> @ident_interner {
475
476
"be", // 65
477
"in", // 66
478
+ "foreach", // 67
479
];
480
481
@ident_interner {
@@ -571,6 +572,7 @@ pub mod keywords {
571
572
False,
573
Fn,
574
For,
575
+ ForEach,
576
If,
577
Impl,
578
In,
@@ -614,6 +616,7 @@ pub mod keywords {
614
616
False => ident { name: 40, ctxt: 0 },
615
617
Fn => ident { name: 41, ctxt: 0 },
618
For => ident { name: 42, ctxt: 0 },
619
+ ForEach => ident { name: 67, ctxt: 0 },
620
If => ident { name: 43, ctxt: 0 },
621
Impl => ident { name: 44, ctxt: 0 },
622
In => ident { name: 66, ctxt: 0 },
0 commit comments