aboutsummaryrefslogtreecommitdiff
path: root/src/server/ast.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-09-13 19:39:59 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-09-13 19:39:59 -0400
commit77491d6ac382a307c2d475553b614cd0ac39eea1 (patch)
treea11d30a333c1a6f491d93a4212ca96af7d5b62af /src/server/ast.odin
parent447f9378d701f752a321d6fc0fe1b10e1c2c6781 (diff)
Add string16 and cstring16 types
Diffstat (limited to 'src/server/ast.odin')
-rw-r--r--src/server/ast.odin2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/ast.odin b/src/server/ast.odin
index 2580338..1ecbb42 100644
--- a/src/server/ast.odin
+++ b/src/server/ast.odin
@@ -12,7 +12,9 @@ import "core:strings"
keyword_map: map[string]struct{} = {
"typeid" = {},
"string" = {},
+ "string16" = {},
"cstring" = {},
+ "cstring16" = {},
"int" = {},
"uint" = {},
"u8" = {},