diff options
author | Ev1lbl0w <ricasubtil@gmail.com> | 2021-07-20 12:24:56 +0100 |
---|---|---|
committer | Ricardo Subtil <ricasubtil@gmail.com> | 2021-08-31 15:17:58 +0100 |
commit | 292ed61c186f0c8416a0837f69817f747e4b5e26 (patch) | |
tree | 44a6082b0c596a1dc6142b38a5b3cf4f11bc512e /editor/plugins/text_editor.h | |
parent | d8a8d32f2ef617944ceab77ecb519a9d8adc20b8 (diff) |
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
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r-- | editor/plugins/text_editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h index 86a4910ac0..18e30e2549 100644 --- a/editor/plugins/text_editor.h +++ b/editor/plugins/text_editor.h @@ -120,6 +120,8 @@ public: virtual void set_edit_state(const Variant &p_state) override; virtual Vector<String> get_functions() override; virtual Array get_breakpoints() override; + virtual void set_breakpoint(int p_line, bool p_enabled) override{}; + virtual void clear_breakpoints() override{}; virtual void goto_line(int p_line, bool p_with_error = false) override; void goto_line_selection(int p_line, int p_begin, int p_end); virtual void set_executing_line(int p_line) override; |