| 662 | } |
| 663 | |
| 664 | void EditorDebuggerNode::reload_scripts(const Vector<String> &p_script_paths) { |
| 665 | _for_all(tabs, [&](ScriptEditorDebugger *dbg) { |
| 666 | dbg->reload_scripts(p_script_paths); |
| 667 | }); |
| 668 | } |
| 669 | |
| 670 | void EditorDebuggerNode::debug_next() { |
| 671 | get_current_debugger()->debug_next(); |
nothing calls this directly
no test coverage detected