RestartFrameRequest

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

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)

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.