| 477 | } |
| 478 | |
| 479 | Dictionary DebugAdapterParser::req_next(const Dictionary &p_params) const { |
| 480 | EditorDebuggerNode::get_singleton()->get_default_debugger()->debug_next(); |
| 481 | DebugAdapterProtocol::get_singleton()->_stepping = true; |
| 482 | |
| 483 | return prepare_success_response(p_params); |
| 484 | } |
| 485 | |
| 486 | Dictionary DebugAdapterParser::req_stepIn(const Dictionary &p_params) const { |
| 487 | EditorDebuggerNode::get_singleton()->get_default_debugger()->debug_step(); |
nothing calls this directly
no test coverage detected