d.hasTargetWatcherSupport()) { await commands.targetConfigurationCommand.updateConfiguration({ recordAllocations: getState().recordingAllocationStacks ? null : ALLOCATION_RECORDING_OPTIONS, }); } else { const front = await commands.targetCommand.targetFront.getFront("memory"); if (getState().recordingAllocationStacks) { await front.stopRecordingAllocations(); } else { await front.startRecordingAllocations(ALLOCATION_RECORDING_OPTIONS); } } dispatch({ type: actions.TOGGLE_RECORD_ALLOCATION_STACKS_END }); }; }; PK