mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 22:28:46 +00:00
Fix parameter/field lists and #import #include syntax
This commit is contained in:
+2
-3
@@ -86,8 +86,8 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \
|
||||
TOKEN_KIND(Token_proc, "proc"), \
|
||||
/* TOKEN_KIND(Token_var, "var"), */\
|
||||
/* TOKEN_KIND(Token_const, "const"), */\
|
||||
TOKEN_KIND(Token_import, "import"), \
|
||||
TOKEN_KIND(Token_include, "include"), \
|
||||
/* TOKEN_KIND(Token_import, "import"), */\
|
||||
/* TOKEN_KIND(Token_include, "include"), */\
|
||||
TOKEN_KIND(Token_macro, "macro"), \
|
||||
TOKEN_KIND(Token_match, "match"), \
|
||||
TOKEN_KIND(Token_break, "break"), \
|
||||
@@ -824,7 +824,6 @@ Token tokenizer_get_token(Tokenizer *t) {
|
||||
break;
|
||||
case ';':
|
||||
token.kind = Token_Semicolon;
|
||||
token.string = str_lit(";");
|
||||
break;
|
||||
case ',':
|
||||
token.kind = Token_Comma;
|
||||
|
||||
Reference in New Issue
Block a user