This function performs step execution.
[Specification format]
debugger.Step(stepOption = StepOption.Source)
|
[Argument(s)]
|
|
stepOption
|
Specify the execution unit.
The units that can be specified are shown below.
|
|
|
StepOption.Source
|
Source-line unit (default)
|
StepOption.Instruction
|
Instruction unit
|
[Return value]
None
[Detailed description]
- | This function performs step execution.
If a function call is being performed, then stop at the top of the function. |
[Example of use]
>>>debugger.Step()
>>>debugger.Step(StepOption.Instruction)
|