diff options
| author | deadwanderer <anthonyjessica822@gmail.com> | 2024-04-03 20:27:58 -0400 |
|---|---|---|
| committer | deadwanderer <anthonyjessica822@gmail.com> | 2024-04-03 20:27:58 -0400 |
| commit | 032d2592f0f5b48210439dea45edeb6c57f6e069 (patch) | |
| tree | 9eac4b40ea7f9b522d18416da2234b4d19ccc83c /src | |
| parent | afed728e5896cc37568a2c9099cb162d79392f08 (diff) | |
Add b8 and b16 types as keywords
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/ast.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/ast.odin b/src/common/ast.odin index 221432b..1036b04 100644 --- a/src/common/ast.odin +++ b/src/common/ast.odin @@ -26,6 +26,8 @@ keyword_map: map[string]bool = { "any" = true, "u32" = true, "u128" = true, + "b8" = true, + "b16" = true, "b32" = true, "b64" = true, "true" = true, |