MCPcopy Index your code
hub / github.com/PowerShell/vscode-powershell / toggleSelection

Function toggleSelection

src/controls/checkboxQuickPick.ts:91–93  ·  view source on GitHub ↗
(item: ICheckboxQuickPickItem)

Source from the content-addressed store, hash-verified

89}
90
91function toggleSelection(item: ICheckboxQuickPickItem): void {
92 item.isSelected = !item.isSelected;
93}
94
95function convertToCheckBox(item: ICheckboxQuickPickItem): string {
96 return `${item.isSelected ? checkedPrefix : uncheckedPrefix} ${item.label}`;

Callers 1

showInnerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected