diff options
author | kobewi <kobewi4e@gmail.com> | 2024-09-30 17:48:27 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-10-01 15:36:09 +0200 |
commit | 645abdbb801c29ba93adefb01e422dc66fb22fc2 (patch) | |
tree | 4ec0f41c819b576328edd288a72fb7b5844c387d /editor/debugger/editor_debugger_inspector.h | |
parent | e3213aaef5e0e72b8272e65d989d3d8222be17ca (diff) | |
download | redot-engine-645abdbb801c29ba93adefb01e422dc66fb22fc2.tar.gz |
Add expression evaluater to debugger (REPL)
Co-authored-by: rohanrhu <rohanrhu2@gmail.com>
Diffstat (limited to 'editor/debugger/editor_debugger_inspector.h')
-rw-r--r-- | editor/debugger/editor_debugger_inspector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/editor_debugger_inspector.h b/editor/debugger/editor_debugger_inspector.h index 73dd773750..fac9525943 100644 --- a/editor/debugger/editor_debugger_inspector.h +++ b/editor/debugger/editor_debugger_inspector.h @@ -90,7 +90,7 @@ public: // Stack Dump variables String get_stack_variable(const String &p_var); - void add_stack_variable(const Array &p_arr); + void add_stack_variable(const Array &p_arr, int p_offset = -1); void clear_stack_variables(); }; |