StepIntoRequest

@Serializable
data class StepIntoRequest(val breakOnAsyncCall: Boolean? = null, val skipList: List<LocationRange>? = null)

Request object containing input parameters for the DebuggerDomain.stepInto command.

Constructors

Link copied to clipboard
constructor(breakOnAsyncCall: Boolean? = null, skipList: List<LocationRange>? = null)

Types

Link copied to clipboard
class Builder

A builder for StepIntoRequest, which allows setting the optional parameters of the DebuggerDomain.stepInto command via a lambda.

Properties

Link copied to clipboard

Debugger will pause on the execution of the first async task which was scheduled before next pause.

Link copied to clipboard

The skipList specifies location ranges that should be skipped on step into.