From ba5c0440b01f9b8a3938306e1b32ddbd5841ff0f Mon Sep 17 00:00:00 2001 From: Ev1lbl0w Date: Tue, 20 Jul 2021 12:24:56 +0100 Subject: [PATCH] Implemented advanced features of DAP Respect client "supportsVariableType" capability Implement "breakpointLocations" request Implement "restart" request Implement "evaluate" request Fix error messages not being shown, and improved wrong path message Removed thread option and behavior Implemented detailed inspection of complex variables Fix "const"ness of functions Added a configurable timeout for requests Implement Godot custom data request/event Implement syncing of breakpoints Added support for debugging native platforms --- visual_script_editor.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/visual_script_editor.h b/visual_script_editor.h index 962ea38..5d6dd06 100644 --- a/visual_script_editor.h +++ b/visual_script_editor.h @@ -311,6 +311,8 @@ public: virtual void tag_saved_version() override; virtual void reload(bool p_soft) override; virtual Array get_breakpoints() override; + virtual void set_breakpoint(int p_line, bool p_enable) override{}; + virtual void clear_breakpoints() override{}; virtual void add_callback(const String &p_function, PackedStringArray p_args) override; virtual void update_settings() override; virtual bool show_members_overview() override;