| 1160 | } |
| 1161 | |
| 1162 | Vector<uint8_t> GDScript::get_as_binary_tokens() const { |
| 1163 | GDScriptTokenizerBuffer tokenizer; |
| 1164 | return tokenizer.parse_code_string(source, GDScriptTokenizerBuffer::COMPRESS_NONE); |
| 1165 | } |
| 1166 | |
| 1167 | const HashMap<StringName, GDScriptFunction *> &GDScript::debug_get_member_functions() const { |
| 1168 | return member_functions; |
nothing calls this directly
no test coverage detected