Function only Mode
By default, the debugger behaves only on function level.
Use the debugger
The debugger has standard definitions of
- Next: goes to the next function call (depth first search order)
- Previous: goes back to the previous function call
- Step Over: goes to the next function call (DO NOT go to nested calls)
- Step Up: goes up one level
Inspect the variables
Under this mode, users can visualize Inputs, Return Value and Gas info.
Updated 7 months ago