diff options
| author | Juan Linietsky | 2014-05-01 11:34:10 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-05-01 11:34:10 -0300 |
| commit | 6572d5128856b2ec55a2c417c92e584899f4906f (patch) | |
| tree | 9e01d6efab14567bfff5dd7b8b3b858d83b1868e /bin/tests/test_gdscript.cpp | |
| parent | 4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97 (diff) | |
| download | godot-6572d5128856b2ec55a2c417c92e584899f4906f.tar.gz godot-6572d5128856b2ec55a2c417c92e584899f4906f.tar.zst godot-6572d5128856b2ec55a2c417c92e584899f4906f.zip | |
Diffstat (limited to 'bin/tests/test_gdscript.cpp')
| -rw-r--r-- | bin/tests/test_gdscript.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/tests/test_gdscript.cpp b/bin/tests/test_gdscript.cpp index 9670e6af6..b62deee2c 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)+")"; |
