eval lexer: same as last

This commit is contained in:
Ryan Fleury
2024-02-05 11:28:29 -08:00
parent 0b6b0947ed
commit e03e1dd136
+1 -1
View File
@@ -414,7 +414,7 @@ eval_token_array_from_text(Arena *arena, String8 text)
}
}
}
else if(!char_is_alpha(byte) && !char_is_digit(byte, 10) && byte != '_' && !active_token_kind_started_with_tick && byte != '@')
else if(!char_is_alpha(byte) && !char_is_digit(byte, 10) && byte != '_' && !active_token_kind_started_with_tick && byte != '@' && byte != '$')
{
advance = 0;
token_formed = 1;