summaryrefslogtreecommitdiff
path: root/bin/tests/test_gdscript.cpp
diff options
context:
space:
mode:
authorjonyrock <ilms@live.ru>2014-05-01 20:15:28 +0400
committerjonyrock <ilms@live.ru>2014-05-01 20:15:28 +0400
commit209eaf6fa06eba8a05e5222bdab418cd0f20c91c (patch)
tree94eac56be6ad254a7c09e13d5e14bd843626232c /bin/tests/test_gdscript.cpp
parent34aea718b11e105d30c938ad34e474b1bd8b5d63 (diff)
parent6572d5128856b2ec55a2c417c92e584899f4906f (diff)
Merge remote-tracking branch 'upstream/master' into pair_symbols_tool
Diffstat (limited to 'bin/tests/test_gdscript.cpp')
-rw-r--r--bin/tests/test_gdscript.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/tests/test_gdscript.cpp b/bin/tests/test_gdscript.cpp
index 9670e6af6e..b62deee2cd 100644
--- a/bin/tests/test_gdscript.cpp
+++ b/bin/tests/test_gdscript.cpp
@@ -442,6 +442,9 @@ static String _disassemble_addr(const Ref<GDScript>& p_script,const GDFunction&
case GDFunction::ADDR_TYPE_SELF: {
return "self";
} break;
+ case GDFunction::ADDR_TYPE_CLASS: {
+ return "class";
+ } break;
case GDFunction::ADDR_TYPE_MEMBER: {
return "member("+p_script->debug_get_member_by_index(addr)+")";