diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-27 17:48:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 17:48:11 +0200 |
commit | f06b7d40c87e6a2435cdfcad6bb620184f16ea42 (patch) | |
tree | 89908d9986b9e54525fc2fedb3347aedc1036f8b /modules/gdscript/gdscript_parser.h | |
parent | 5b87864385fb702cf759df588120421bf0bacd68 (diff) | |
parent | 4b974a36b77da55d331243bf42fa7ddc8fd9a33d (diff) |
Merge pull request #21449 from vnen/gdscript-builtin-is
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, |