godot/editor/debugger/debug_adapter/debug_adapter_parser.cpp

/**************************************************************************/
/*  debug_adapter_parser.cpp                                              */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "debug_adapter_parser.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 {}