RestartFrameRequest

@Serializable
data class RestartFrameRequest(val callFrameId: CallFrameId, val mode: FrameMode? = null)

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

Constructors

Link copied to clipboard
constructor(callFrameId: CallFrameId, mode: FrameMode? = null)

Types

Link copied to clipboard
class Builder(val callFrameId: CallFrameId)

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

Properties

Link copied to clipboard

Call frame identifier to evaluate on.

Link copied to clipboard
val mode: FrameMode? = null

The mode parameter must be present and set to 'StepInto', otherwise restartFrame will error out.