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/debugger/script_editor_debugger.h | |
parent | d8a8d32f2ef617944ceab77ecb519a9d8adc20b8 (diff) | |
download | redot-engine-292ed61c186f0c8416a0837f69817f747e4b5e26.tar.gz |
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/debugger/script_editor_debugger.h')
-rw-r--r-- | editor/debugger/script_editor_debugger.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/debugger/script_editor_debugger.h b/editor/debugger/script_editor_debugger.h index 499dda86da..1c1c0fd3e5 100644 --- a/editor/debugger/script_editor_debugger.h +++ b/editor/debugger/script_editor_debugger.h @@ -205,6 +205,9 @@ private: void _clear_execution(); void _stop_and_notify(); + void _set_breakpoint(const String &p_path, const int &p_line, const bool &p_enabled); + void _clear_breakpoints(); + protected: void _notification(int p_what); static void _bind_methods(); |