Everything

debugger.Go


This function continues program execution.

[Specification format]

debugger.Go(goOption = GoOption.Normal)

[Argument(s)]

Argument

Description

goOption

Specify an option.

The options that can be specified are shown below.

Type

Description

GoOption.IgnoreBreak

Execute ignoring breakpoints.

GoOption.WaitBreak

Wait until program stops.

GoOption.Normal

Breakpoints enabled; do not wait until program stops (default).

[Return value]

None

[Detailed description]

-

This function continues program execution.

-

If goOption is specified, the processing is performed in accordance with the specification.

[Example of use]

>>>debugger.Go()
>>>debugger.Go(GoOption.WaitBreak)
>>>