| 286 | } |
| 287 | |
| 288 | Dictionary DebugAdapterParser::req_pause(const Dictionary &p_params) const { |
| 289 | EditorRunBar::get_singleton()->get_pause_button()->set_pressed(true); |
| 290 | EditorDebuggerNode::get_singleton()->_paused(); |
| 291 | |
| 292 | DebugAdapterProtocol::get_singleton()->notify_stopped_paused(); |
| 293 | |
| 294 | return prepare_success_response(p_params); |
| 295 | } |
| 296 | |
| 297 | Dictionary DebugAdapterParser::req_continue(const Dictionary &p_params) const { |
| 298 | EditorRunBar::get_singleton()->get_pause_button()->set_pressed(false); |
nothing calls this directly
no test coverage detected