diff options
author | Ricardo Subtil <ricasubtil@gmail.com> | 2024-03-14 10:53:30 +0000 |
---|---|---|
committer | Ricardo Subtil <ricasubtil@gmail.com> | 2024-03-14 14:34:14 +0000 |
commit | b6d12041861960804554a23b3d7820c9f7772c3e (patch) | |
tree | 6d773058158bdb50c3da7329bc594ec3b4403c8e /editor/debugger/debug_adapter/debug_adapter_parser.h | |
parent | f2045ba822bff7d34964901393581a3117c394a9 (diff) | |
download | redot-engine-b6d12041861960804554a23b3d7820c9f7772c3e.tar.gz |
Add output type to DAP `output` events
Diffstat (limited to 'editor/debugger/debug_adapter/debug_adapter_parser.h')
-rw-r--r-- | editor/debugger/debug_adapter/debug_adapter_parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/debugger/debug_adapter/debug_adapter_parser.h b/editor/debugger/debug_adapter/debug_adapter_parser.h index e5493a4b9f..9860e96498 100644 --- a/editor/debugger/debug_adapter/debug_adapter_parser.h +++ b/editor/debugger/debug_adapter/debug_adapter_parser.h @@ -32,6 +32,7 @@ #define DEBUG_ADAPTER_PARSER_H #include "core/config/project_settings.h" +#include "core/debugger/remote_debugger.h" #include "debug_adapter_protocol.h" #include "debug_adapter_types.h" @@ -98,7 +99,7 @@ public: Dictionary ev_stopped_breakpoint(const int &p_id) const; Dictionary ev_stopped_step() const; Dictionary ev_continued() const; - Dictionary ev_output(const String &p_message) const; + Dictionary ev_output(const String &p_message, RemoteDebugger::MessageType p_type) const; Dictionary ev_custom_data(const String &p_msg, const Array &p_data) const; Dictionary ev_breakpoint(const DAP::Breakpoint &p_breakpoint, const bool &p_enabled) const; }; |