summaryrefslogtreecommitdiff
path: root/src/lexer
diff options
context:
space:
mode:
Diffstat (limited to 'src/lexer')
-rw-r--r--src/lexer/token.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lexer/token.c b/src/lexer/token.c
index 54fa5d3..eec7b87 100644
--- a/src/lexer/token.c
+++ b/src/lexer/token.c
@@ -173,10 +173,6 @@ Token lexer_next(Lexer *l)
{
return (Token){TOK_VOLATILE, s, 8, start_line, start_col};
}
- if (len == 3 && strncmp(s, "mut", 3) == 0)
- {
- return (Token){TOK_MUT, s, 3, start_line, start_col};
- }
if (len == 5 && strncmp(s, "async", 5) == 0)
{
return (Token){TOK_ASYNC, s, 5, start_line, start_col};