diff options
author | Wenqiang <wenqiang.w@gmail.com> | 2024-09-19 22:35:51 -0700 |
---|---|---|
committer | Wenqiang <wenqiang.w@gmail.com> | 2024-09-28 13:28:07 -0700 |
commit | 9a94353fa3644c8a99f35694c59d51708a496080 (patch) | |
tree | 556b3375b029237d9869127a9f465c3b3575a997 /core/debugger | |
parent | 0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb (diff) | |
download | redot-engine-9a94353fa3644c8a99f35694c59d51708a496080.tar.gz |
Added support for 'print' command in local (command line -d) debugger
Diffstat (limited to 'core/debugger')
-rw-r--r-- | core/debugger/local_debugger.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/debugger/local_debugger.cpp b/core/debugger/local_debugger.cpp index dc46ffc307..5e79a6d395 100644 --- a/core/debugger/local_debugger.cpp +++ b/core/debugger/local_debugger.cpp @@ -208,10 +208,10 @@ void LocalDebugger::debug(bool p_can_continue, bool p_is_error_breakpoint) { print_variables(members, values, variable_prefix); } else if (line.begins_with("p") || line.begins_with("print")) { - if (line.get_slice_count(" ") <= 1) { - print_line("Usage: print <expre>"); + if (line.find_char(' ') < 0) { + print_line("Usage: print <expression>"); } else { - String expr = line.get_slicec(' ', 2); + String expr = line.split(" ", true, 1)[1]; String res = script_lang->debug_parse_stack_level_expression(current_frame, expr); print_line(res); } |