Everything

debugger.Step


This function performs step execution.

[Specification format]

debugger.Step(stepOption = StepOption.Source)

[Argument(s)]

Argument

Description

stepOption

Specify the execution unit.

The units that can be specified are shown below.

Type

Description

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)