Skip to content

Commit

Permalink
Finished an incomplete section + typo fix
Browse files Browse the repository at this point in the history
Explaination - > explanation
Wrote brief blurbs on the capabilities of the debugger stepping buttons, all of which were previously incomplete/missing.
  • Loading branch information
robriks authored and Aniket-Engg committed Aug 2, 2022
1 parent b1b033e commit c7b2743
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions docs/tutorial_debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,25 @@ The navigation part contains a slider and buttons that can be used to
step through the transaction execution.


### More explaination of what these buttons do.
1. Step Into
2. Step Over Into


11 panels give detailed information about the execution:
### Explanation of Debugger button capabilities

1. Step Over Back
Returns to the previous step, but ignores/steps over function calls: the debugger WILL NOT enter a function
2. Step Back
Returns to the previous step. Does not ignore function calls: the debugger WILL enter any function along the way
3. Step Into
Forwards to the next step. Does not ignore function calls: the debugger WILL enter any function along the way
4. Step Over Forward
Forwards to the next step, but ignores/steps over function calls: the debugger WILL NOT enter a function
5. Jump to the Previous Breakpoint
Sends the debugger to the last visited breakpoint. Note that breakpoints may be set by clicking the line number in source code
6. Jump Out
Sends the debugger to the function's end
7. Jump to the Next Breakpoint
Sends the debugger to the next breakpoint


## 11 panels give detailed information about the execution:

### Instructions

Expand Down

0 comments on commit c7b2743

Please sign in to comment.