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