Home
last modified time | relevance | path

Searched refs:CodeActionCommand (Results 1 – 11 of 11) sorted by relevance

/third_party/typescript/src/services/
DcodeFixProvider.ts10 …ts, fixId: {}, fixAllDescription: DiagnosticAndArguments, command?: CodeActionCommand): CodeFixAct…
14 …ndArguments, fixId?: {}, fixAllDescription?: DiagnosticAndArguments, command?: CodeActionCommand) {
18 …ileTextChanges[], fixId?: {}, fixAllDescription?: string, command?: CodeActionCommand): CodeFixAct…
63 …on createCombinedCodeActions(changes: FileTextChanges[], commands?: CodeActionCommand[]): Combined…
74 …xtChanges.ChangeTracker, error: DiagnosticWithLocation, commands: Push<CodeActionCommand>) => void,
76 const commands: CodeActionCommand[] = [];
Dtypes.ts542 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
543 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
544 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
546 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
548 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
550 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
794 commands?: CodeActionCommand[];
810 commands?: readonly CodeActionCommand[];
815 export type CodeActionCommand = InstallPackageAction; alias
885 commands?: CodeActionCommand[];
Dservices.ts2128 …function applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): P…
2129 …function applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings):…
2130 …function applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: …
2131 …function applyCodeActionCommand(fileName: Path, action: CodeActionCommand): Promise<ApplyCodeActio…
2132 …function applyCodeActionCommand(fileName: Path, action: CodeActionCommand[]): Promise<ApplyCodeAct…
2133 …d(fileName: Path | CodeActionCommand | CodeActionCommand[], actionOrFormatSettingsOrUndefined?: Co…
2134 …" ? actionOrFormatSettingsOrUndefined as CodeActionCommand | CodeActionCommand[] : fileName as Cod…
2138 …function applySingleCodeActionCommand(action: CodeActionCommand): Promise<ApplyCodeActionCommandRe…
/third_party/typescript/src/harness/
DfourslashInterfaceImpl.ts1851 readonly commands?: readonly ts.CodeActionCommand[];
1856 commands?: ts.CodeActionCommand[];
Dclient.ts675 … changes: this.convertChanges(changes, file), commands: commands as CodeActionCommand[], fixId, fi…
/third_party/typescript/lib/
Dtypescript.d.ts6377 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
6378 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
6379 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
6381 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
6383 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
6385 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6583 commands?: CodeActionCommand[];
6597 commands?: readonly CodeActionCommand[];
6599 type CodeActionCommand = InstallPackageAction; alias
6658 commands?: CodeActionCommand[];
DtypescriptServices.d.ts6377 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
6378 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
6379 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
6381 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
6383 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
6385 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6583 commands?: CodeActionCommand[];
6597 commands?: readonly CodeActionCommand[];
6599 type CodeActionCommand = InstallPackageAction; alias
6658 commands?: CodeActionCommand[];
Dtsserverlibrary.d.ts6377 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
6378 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
6379 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
6381 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
6383 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
6385 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6583 commands?: CodeActionCommand[];
6597 commands?: readonly CodeActionCommand[];
6599 type CodeActionCommand = InstallPackageAction; alias
6658 commands?: CodeActionCommand[];
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts6377 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
6378 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
6379 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
6381 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
6383 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
6385 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6583 commands?: CodeActionCommand[];
6597 commands?: readonly CodeActionCommand[];
6599 type CodeActionCommand = InstallPackageAction; alias
6658 commands?: CodeActionCommand[];
Dtsserverlibrary.d.ts6377 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
6378 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
6379 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
6381 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
6383 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
6385 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6583 commands?: CodeActionCommand[];
6597 commands?: readonly CodeActionCommand[];
6599 type CodeActionCommand = InstallPackageAction; alias
6658 commands?: CodeActionCommand[];
/third_party/typescript/src/server/
Dsession.ts2627 …const commands = args.command as CodeActionCommand | CodeActionCommand[]; // They should be sendin…