diff options
| author | kimu_shu <[email protected]> | 2019-02-19 18:10:05 +0900 |
|---|---|---|
| committer | kimu_shu <[email protected]> | 2019-02-19 18:10:05 +0900 |
| commit | 477ffc747368f26ee90cb03fa69d23690298fc3d (patch) | |
| tree | 2f37105d3235e57b8e1098e9166cf32fe4327f65 /mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h | |
| parent | 971bfd13c152bb9ac8f09737b89a228c88e15d66 (diff) | |
| download | mruby-477ffc747368f26ee90cb03fa69d23690298fc3d.tar.gz mruby-477ffc747368f26ee90cb03fa69d23690298fc3d.zip | |
Add "info locals" command to mrdb
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h')
| -rw-r--r-- | mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h index 5ac12c1cd..7b14a899f 100644 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h @@ -23,6 +23,7 @@ typedef enum debug_command_id { DBGCMD_STEP, DBGCMD_BREAK, DBGCMD_INFO_BREAK, + DBGCMD_INFO_LOCAL, DBGCMD_WATCH, DBGCMD_INFO_WATCH, DBGCMD_ENABLE, @@ -151,6 +152,7 @@ dbgcmd_state dbgcmd_next(mrb_state*, mrdb_state*); /* cmdbreak.c */ dbgcmd_state dbgcmd_break(mrb_state*, mrdb_state*); dbgcmd_state dbgcmd_info_break(mrb_state*, mrdb_state*); +dbgcmd_state dbgcmd_info_local(mrb_state*, mrdb_state*); dbgcmd_state dbgcmd_delete(mrb_state*, mrdb_state*); dbgcmd_state dbgcmd_enable(mrb_state*, mrdb_state*); dbgcmd_state dbgcmd_disable(mrb_state*, mrdb_state*); |
