summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_parser.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-05-27 11:30:30 +0200
committerGitHub <noreply@github.com>2017-05-27 11:30:30 +0200
commit6a088335163be87d53ece476281d9baa3fcba0a4 (patch)
tree7aa37f034a976f44f5ecc68c42b2429d48a97429 /modules/gdscript/gd_parser.h
parent168d8a57dac98ae82ff16a5c89fce63d84efc3ca (diff)
parent015d36d18bb3f9fe21452a470aac2c3a3597b92f (diff)
downloadredot-engine-6a088335163be87d53ece476281d9baa3fcba0a4.tar.gz
Merge pull request #8933 from Hinsbart/is_keyword
GDScript: Use "is" keyword for type checking.
Diffstat (limited to 'modules/gdscript/gd_parser.h')
-rw-r--r--modules/gdscript/gd_parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_parser.h b/modules/gdscript/gd_parser.h
index 7e7e19de1b..3ad3466624 100644
--- a/modules/gdscript/gd_parser.h
+++ b/modules/gdscript/gd_parser.h
@@ -216,7 +216,7 @@ public:
OP_CALL,
OP_PARENT_CALL,
OP_YIELD,
- OP_EXTENDS,
+ OP_IS,
//indexing operator
OP_INDEX,
OP_INDEX_NAMED,