diff options
Diffstat (limited to 'src/comp/front/lexer.rs')
| -rw-r--r-- | src/comp/front/lexer.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/front/lexer.rs b/src/comp/front/lexer.rs index 9ef6ea27..4153533a 100644 --- a/src/comp/front/lexer.rs +++ b/src/comp/front/lexer.rs @@ -141,6 +141,7 @@ fn keyword_table() -> std.map.hashmap[str, token.token] { keywords.insert("auto", token.AUTO); keywords.insert("fn", token.FN); + keywords.insert("pred", token.PRED); keywords.insert("iter", token.ITER); keywords.insert("import", token.IMPORT); |