pl.wendigo.chrome.domain.debugger / SetBlackboxedRangesRequest

SetBlackboxedRangesRequest

data class SetBlackboxedRangesRequest (source)

Represents request frame that can be used with Debugger.setBlackboxedRanges method call.

Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.

Constructors

<init>

SetBlackboxedRangesRequest(scriptId: ScriptId, positions: List<ScriptPosition>)

Represents request frame that can be used with Debugger.setBlackboxedRanges method call.

Properties

positions

val positions: List<ScriptPosition>

scriptId

val scriptId: ScriptId

Id of the script.