setBlackboxedRanges

suspend fun setBlackboxedRanges(args: Debugger.SetBlackboxedRangesParameter, mode: CommandMode = CommandMode.DEFAULT)

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.


suspend fun setBlackboxedRanges(scriptId: String, positions: List<Debugger.ScriptPosition>)

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.

Parameters

scriptId

Id of the script.

positions

No description