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

Function getQuickPickItems

src/controls/checkboxQuickPick.ts:34–48  ·  view source on GitHub ↗
(
    items: ICheckboxQuickPickItem[],
)

Source from the content-addressed store, hash-verified

32}
33
34function getQuickPickItems(
35 items: ICheckboxQuickPickItem[],
36): vscode.QuickPickItem[] {
37 const quickPickItems: vscode.QuickPickItem[] = [];
38 quickPickItems.push({ label: confirmItemLabel, description: "" });
39
40 for (const item of items) {
41 quickPickItems.push({
42 label: convertToCheckBox(item),
43 description: item.description,
44 });
45 }
46
47 return quickPickItems;
48}
49
50async function showInner(
51 items: ICheckboxQuickPickItem[],

Callers 1

showInnerFunction · 0.85

Calls 1

convertToCheckBoxFunction · 0.85

Tested by

no test coverage detected