Everything

debugger.Next


This function performs procedure step execution.

[Specification format]

debugger.Next(nextOption = NextOption.Source)

[Argument(s)]

Argument

Description

nextOption

Specify the execution unit.

The units that can be specified are shown below.

Type

Description

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)
>>>