#include "debug_adapter_parser.h"
#include "editor/debugger/debug_adapter/debug_adapter_types.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/debugger/script_editor_debugger.h"
#include "editor/export/editor_export_platform.h"
#include "editor/gui/editor_run_bar.h"
#include "editor/plugins/script_editor_plugin.h"
void DebugAdapterParser::_bind_methods() { … }
Dictionary DebugAdapterParser::prepare_base_event() const { … }
Dictionary DebugAdapterParser::prepare_success_response(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::prepare_error_response(const Dictionary &p_params, DAP::ErrorType err_type, const Dictionary &variables) const { … }
Dictionary DebugAdapterParser::req_initialize(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_disconnect(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_launch(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::_launch_process(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_attach(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_restart(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_terminate(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_configurationDone(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_pause(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_continue(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_threads(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_stackTrace(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_setBreakpoints(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_breakpointLocations(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_scopes(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_variables(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_next(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_stepIn(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_evaluate(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::req_godot_put_msg(const Dictionary &p_params) const { … }
Dictionary DebugAdapterParser::ev_initialized() const { … }
Dictionary DebugAdapterParser::ev_process(const String &p_command) const { … }
Dictionary DebugAdapterParser::ev_terminated() const { … }
Dictionary DebugAdapterParser::ev_exited(const int &p_exitcode) const { … }
Dictionary DebugAdapterParser::ev_stopped() const { … }
Dictionary DebugAdapterParser::ev_stopped_paused() const { … }
Dictionary DebugAdapterParser::ev_stopped_exception(const String &p_error) const { … }
Dictionary DebugAdapterParser::ev_stopped_breakpoint(const int &p_id) const { … }
Dictionary DebugAdapterParser::ev_stopped_step() const { … }
Dictionary DebugAdapterParser::ev_continued() const { … }
Dictionary DebugAdapterParser::ev_output(const String &p_message, RemoteDebugger::MessageType p_type) const { … }
Dictionary DebugAdapterParser::ev_breakpoint(const DAP::Breakpoint &p_breakpoint, const bool &p_enabled) const { … }
Dictionary DebugAdapterParser::ev_custom_data(const String &p_msg, const Array &p_data) const { … }