| 1358 | } |
| 1359 | |
| 1360 | String ScriptEditorDebugger::get_var_value(const String &p_var) const { |
| 1361 | if (!is_breaked()) { |
| 1362 | return String(); |
| 1363 | } |
| 1364 | return inspector->get_stack_variable(p_var); |
| 1365 | } |
| 1366 | |
| 1367 | void ScriptEditorDebugger::_resources_reimported(const PackedStringArray &p_resources) { |
| 1368 | Array msg = { p_resources }; |
nothing calls this directly
no test coverage detected