File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -124,12 +124,25 @@ The navigation part contains a slider and buttons that can be used to
124
124
step through the transaction execution.
125
125
126
126
127
- ### More explaination of what these buttons do.
128
- 1 . Step Into
129
- 2 . Step Over Into
130
-
131
-
132
- 11 panels give detailed information about the execution:
127
+ ### Explanation of Debugger button capabilities
128
+
129
+ 1 . Step Over Back
130
+ Returns to the previous step, but ignores/steps over function calls: the debugger WILL NOT enter a function
131
+ 2 . Step Back
132
+ Returns to the previous step. Does not ignore function calls: the debugger WILL enter any function along the way
133
+ 3 . Step Into
134
+ Forwards to the next step. Does not ignore function calls: the debugger WILL enter any function along the way
135
+ 4 . Step Over Forward
136
+ Forwards to the next step, but ignores/steps over function calls: the debugger WILL NOT enter a function
137
+ 5 . Jump to the Previous Breakpoint
138
+ Sends the debugger to the last visited breakpoint. Note that breakpoints may be set by clicking the line number in source code
139
+ 6 . Jump Out
140
+ Sends the debugger to the function's end
141
+ 7 . Jump to the Next Breakpoint
142
+ Sends the debugger to the next breakpoint
143
+
144
+
145
+ ## 11 panels give detailed information about the execution:
133
146
134
147
### Instructions
135
148
You can’t perform that action at this time.
0 commit comments