chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / StepIntoRequest

StepIntoRequest

data class StepIntoRequest

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

Constructors

<init>

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

StepIntoRequest(breakOnAsyncCall: Boolean? = null, skipList: List<LocationRange>? = null)

Properties

breakOnAsyncCall

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

val breakOnAsyncCall: Boolean?

skipList

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

val skipList: List<LocationRange>?