Ported unicode conversions

This commit is contained in:
Krzosa Karol
2022-06-15 10:51:45 +02:00
parent aab89ffada
commit cdeebfb8f9
7 changed files with 75 additions and 32 deletions

View File

@@ -163,6 +163,7 @@ Intern_String keyword_true;
Intern_String keyword_false;
Intern_String keyword_for;
Intern_String keyword_pass;
Intern_String keyword_break;
Intern_String keyword_elif;
Intern_String keyword_assert;
Intern_String keyword_sizeof;
@@ -210,6 +211,7 @@ lex_init(Allocator *token_string_arena, Allocator *map_allocator, Lexer *l){
keyword_lengthof = l->intern("length_of"_s);
keyword_alignof = l->intern("align_of"_s);
keyword_true = l->intern("true"_s);
keyword_break = l->intern("break"_s);
keyword_false = l->intern("false"_s);
keyword_return = l->intern("return"_s);
keyword_assert = l->intern("assert"_s);