diff options
author | Lukas Wirth <[email protected]> | 2021-01-24 01:17:41 +0000 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-01-24 01:17:41 +0000 |
commit | 70d43c3faf6cc4e6fe4833c6375d05e54874ca0d (patch) | |
tree | f4b06a875d92661bcf5b4080864baa07dabb8914 /crates/parser | |
parent | 89fef5307e81d5d23bb65677000f35332190661a (diff) |
Add validation for mutable const items
Diffstat (limited to 'crates/parser')
-rw-r--r-- | crates/parser/src/grammar/items/consts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/grammar/items/consts.rs b/crates/parser/src/grammar/items/consts.rs index eb7d1f828..12130df40 100644 --- a/crates/parser/src/grammar/items/consts.rs +++ b/crates/parser/src/grammar/items/consts.rs | |||
@@ -13,7 +13,7 @@ pub(super) fn konst(p: &mut Parser, m: Marker) { | |||
13 | fn const_or_static(p: &mut Parser, m: Marker, kw: SyntaxKind, def: SyntaxKind) { | 13 | fn const_or_static(p: &mut Parser, m: Marker, kw: SyntaxKind, def: SyntaxKind) { |
14 | assert!(p.at(kw)); | 14 | assert!(p.at(kw)); |
15 | p.bump(kw); | 15 | p.bump(kw); |
16 | p.eat(T![mut]); // FIXME: validator to forbid const mut | 16 | p.eat(T![mut]); |
17 | 17 | ||
18 | // Allow `_` in place of an identifier in a `const`. | 18 | // Allow `_` in place of an identifier in a `const`. |
19 | let is_const_underscore = kw == T![const] && p.eat(T![_]); | 19 | let is_const_underscore = kw == T![const] && p.eat(T![_]); |