Add inline asm expression to odin/parser

This commit is contained in:
gingerBill
2020-12-06 01:14:55 +00:00
parent dff4c6b666
commit ea60db9f53
3 changed files with 107 additions and 0 deletions
+2
View File
@@ -149,6 +149,7 @@ Token_Kind :: enum u32 {
Inline,
No_Inline,
Context,
Asm,
B_Keyword_End,
COUNT,
@@ -278,6 +279,7 @@ tokens := [Token_Kind.COUNT]string {
"inline",
"no_inline",
"context",
"asm",
"",
};