From 8506fb818f19e888ff37a0455cefa452a9b324fa Mon Sep 17 00:00:00 2001 From: Daniel <22991229+SentientCoffee@users.noreply.github.com> Date: Mon, 1 Jan 2024 01:15:25 -0500 Subject: [PATCH] Add `initializer_of` keyword and `Type` type --- src/langs/jai.jai | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/langs/jai.jai b/src/langs/jai.jai index b6ec2851c..157ef077f 100644 --- a/src/langs/jai.jai +++ b/src/langs/jai.jai @@ -683,14 +683,14 @@ OPERATIONS :: string.[ ]; KEYWORDS :: string.[ - "break", "case", "cast", "code_of", "continue", "defer", "else", "enum", "enum_flags", "for", + "break", "case", "cast", "code_of", "continue", "defer", "else", "enum", "enum_flags", "for", "initializer_of", "if", "ifx", "is_constant", "inline", "push_context", "return", "size_of", "struct", "then", "type_info", "type_of", "union", "using", "while", "xx", "operator", "remove", ]; TYPE_KEYWORDS :: string.[ "__reg", "bool", "float", "float32", "float64", "int", "reg", "s16", "s32", "s64", "s8", "string", - "u16", "u32", "u64", "u8", "void", "v128", "Any", "Code", + "u16", "u32", "u64", "u8", "void", "v128", "Any", "Code", "Type", ]; VALUE_KEYWORDS :: string.[