diff options
author | karroffel <therzog@mail.de> | 2017-01-20 09:25:15 +0100 |
---|---|---|
committer | karroffel <therzog@mail.de> | 2017-01-20 09:26:55 +0100 |
commit | c24c739da54225dd5090e82c8d0a34f8bbe0724a (patch) | |
tree | f8c4239a855de359c29d216c56532bf0d8ca34a8 /modules/gdscript/gd_tokenizer.h | |
parent | 72a02555850016ab792cf498c5370983d3b72832 (diff) |
made _ a special token in GDScript
Diffstat (limited to 'modules/gdscript/gd_tokenizer.h')
-rw-r--r-- | modules/gdscript/gd_tokenizer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gd_tokenizer.h b/modules/gdscript/gd_tokenizer.h index 9a6f4df9c4..5d955ff1ae 100644 --- a/modules/gdscript/gd_tokenizer.h +++ b/modules/gdscript/gd_tokenizer.h @@ -127,6 +127,7 @@ public: TK_DOLLAR, TK_NEWLINE, TK_CONST_PI, + TK_WILDCARD, TK_ERROR, TK_EOF, TK_CURSOR, //used for code completion |