()
| 704 | } |
| 705 | |
| 706 | export async function executeSortMembersCodeAction() { |
| 707 | return executeCodeAction({ kind: SourceSortMembersCodeActionKind }, startOfDocument); |
| 708 | } |
| 709 | |
| 710 | export async function getCodeActions({ kind, title, requireExactlyOne = false, waitForMatch = true }: { kind?: vs.CodeActionKind, title?: string, requireExactlyOne?: boolean, waitForMatch?: boolean }, range: vs.Range) { |
| 711 | let codeActions: vs.CodeAction[] = []; |
no test coverage detected