summaryrefslogtreecommitdiffstats
path: root/crates/rebel-parse/src/grammar/tokenize.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rebel-parse/src/grammar/tokenize.rs')
-rw-r--r--crates/rebel-parse/src/grammar/tokenize.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/rebel-parse/src/grammar/tokenize.rs b/crates/rebel-parse/src/grammar/tokenize.rs
index a696852..4f4da2b 100644
--- a/crates/rebel-parse/src/grammar/tokenize.rs
+++ b/crates/rebel-parse/src/grammar/tokenize.rs
@@ -5,6 +5,8 @@ pub use rules::*;
static KEYWORDS: phf::Map<&'static str, Keyword> = phf::phf_map! {
"true" => Keyword::True,
"false" => Keyword::False,
+ "let" => Keyword::Let,
+ "mut" => Keyword::Mut,
"fetch" => Keyword::Fetch,
"task" => Keyword::Task,
"struct" => Keyword::Struct,