- I have decided to opt for simplicity over C-like-ness and group array sizes with the rest
of the type declaration rather than split it up after the variable name. - More AST work. At this rate, maybe I'll finally be building a complete AST by the end of the month! SVN r2499 (scripting)
This commit is contained in:
parent
9d931ed10c
commit
081ebbb64b
5 changed files with 107 additions and 48 deletions
|
|
@ -76,6 +76,7 @@ static void InitTokenMap()
|
|||
TOKENDEF(TK_Final, ZCC_FINAL);
|
||||
TOKENDEF(TK_Meta, ZCC_META);
|
||||
TOKENDEF(TK_Deprecated, ZCC_DEPRECATED);
|
||||
TOKENDEF(TK_ReadOnly, ZCC_READONLY);
|
||||
TOKENDEF('{', ZCC_LBRACE);
|
||||
TOKENDEF('}', ZCC_RBRACE);
|
||||
TOKENDEF(TK_Struct, ZCC_STRUCT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue