diff options
author | George Marques <george@gmarqu.es> | 2018-08-26 13:31:23 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2018-08-26 13:31:23 -0300 |
commit | 4b974a36b77da55d331243bf42fa7ddc8fd9a33d (patch) | |
tree | 4dae938cf06fb2bc237f7f9786b22306afc8b97a /modules/gdscript/gdscript_parser.h | |
parent | 653b4829f1bee9e6bfae9d353b6e1145cea0aece (diff) | |
download | redot-engine-4b974a36b77da55d331243bf42fa7ddc8fd9a33d.tar.gz |
GDScript: Allow `is` operator to test built-in types
Diffstat (limited to 'modules/gdscript/gdscript_parser.h')
-rw-r--r-- | modules/gdscript/gdscript_parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_parser.h b/modules/gdscript/gdscript_parser.h index dbe523a0b9..3c51e3f372 100644 --- a/modules/gdscript/gdscript_parser.h +++ b/modules/gdscript/gdscript_parser.h @@ -345,6 +345,7 @@ public: OP_PARENT_CALL, OP_YIELD, OP_IS, + OP_IS_BUILTIN, //indexing operator OP_INDEX, OP_INDEX_NAMED, |