Added the opaque keyword

This commit is contained in:
2022-10-03 21:32:09 +01:00
parent 8ce7dd0d95
commit bd4ab2aa04
5 changed files with 10 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ typedef enum TokenType {
TOKEN_ARRAY,
TOKEN_DICTIONARY,
TOKEN_FUNCTION,
TOKEN_OPAQUE,
TOKEN_ANY,
//keywords and reserved words
@@ -89,4 +90,3 @@ typedef enum TokenType {
TOKEN_ERROR,
TOKEN_EOF,
} TokenType;