mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
syntax: add 'in' keyword
This commit is contained in:
parent
436d9fa45d
commit
a8840d70a5
@ -474,6 +474,7 @@ fn mk_fresh_ident_interner() -> @ident_interner {
|
|||||||
"while", // 64
|
"while", // 64
|
||||||
|
|
||||||
"be", // 65
|
"be", // 65
|
||||||
|
"in", // 66
|
||||||
];
|
];
|
||||||
|
|
||||||
@ident_interner {
|
@ident_interner {
|
||||||
@ -572,6 +573,7 @@ pub mod keywords {
|
|||||||
For,
|
For,
|
||||||
If,
|
If,
|
||||||
Impl,
|
Impl,
|
||||||
|
In,
|
||||||
Let,
|
Let,
|
||||||
__Log,
|
__Log,
|
||||||
Loop,
|
Loop,
|
||||||
@ -614,6 +616,7 @@ pub mod keywords {
|
|||||||
For => ident { name: 42, ctxt: 0 },
|
For => ident { name: 42, ctxt: 0 },
|
||||||
If => ident { name: 43, ctxt: 0 },
|
If => ident { name: 43, ctxt: 0 },
|
||||||
Impl => ident { name: 44, ctxt: 0 },
|
Impl => ident { name: 44, ctxt: 0 },
|
||||||
|
In => ident { name: 66, ctxt: 0 },
|
||||||
Let => ident { name: 45, ctxt: 0 },
|
Let => ident { name: 45, ctxt: 0 },
|
||||||
__Log => ident { name: 46, ctxt: 0 },
|
__Log => ident { name: 46, ctxt: 0 },
|
||||||
Loop => ident { name: 47, ctxt: 0 },
|
Loop => ident { name: 47, ctxt: 0 },
|
||||||
|
Loading…
Reference in New Issue
Block a user