diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 19:39:59 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 19:39:59 -0400 |
| commit | 77491d6ac382a307c2d475553b614cd0ac39eea1 (patch) | |
| tree | a11d30a333c1a6f491d93a4212ca96af7d5b62af /src/server/ast.odin | |
| parent | 447f9378d701f752a321d6fc0fe1b10e1c2c6781 (diff) | |
Add string16 and cstring16 types
Diffstat (limited to 'src/server/ast.odin')
| -rw-r--r-- | src/server/ast.odin | 2 |
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" = {}, |