Home
last modified time | relevance | path

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

/third_party/typescript/src/services/
DcodeFixProvider.ts17 …ts, fixId: {}, fixAllDescription: DiagnosticAndArguments, command?: CodeActionCommand): CodeFixAct…
21 …ileTextChanges[], fixId?: {}, fixAllDescription?: string, command?: CodeActionCommand): CodeFixAct…
66 …on createCombinedCodeActions(changes: FileTextChanges[], commands?: CodeActionCommand[]): Combined…
77 …xtChanges.ChangeTracker, error: DiagnosticWithLocation, commands: Push<CodeActionCommand>) => void,
79 const commands: CodeActionCommand[] = [];
Dtypes.ts515 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
516 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
517 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
519 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
521 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
523 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
721 commands?: CodeActionCommand[];
737 commands?: readonly CodeActionCommand[];
742 export type CodeActionCommand = InstallPackageAction; alias
812 commands?: CodeActionCommand[];
Dservices.ts2006 …function applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): P…
2007 …function applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings):…
2008 …function applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: …
2009 …function applyCodeActionCommand(fileName: Path, action: CodeActionCommand): Promise<ApplyCodeActio…
2010 …function applyCodeActionCommand(fileName: Path, action: CodeActionCommand[]): Promise<ApplyCodeAct…
2011 …d(fileName: Path | CodeActionCommand | CodeActionCommand[], actionOrFormatSettingsOrUndefined?: Co…
2012 …" ? actionOrFormatSettingsOrUndefined as CodeActionCommand | CodeActionCommand[] : fileName as Cod…
2016 …function applySingleCodeActionCommand(action: CodeActionCommand): Promise<ApplyCodeActionCommandRe…
/third_party/typescript/src/harness/
DfourslashInterfaceImpl.ts1685 readonly commands?: readonly ts.CodeActionCommand[];
1690 commands?: ts.CodeActionCommand[];
Dclient.ts631 … changes: this.convertChanges(changes, file), commands: commands as CodeActionCommand[], fixId, fi…
/third_party/typescript/lib/
Dtypescript.d.ts5611 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
5612 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
5613 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
5615 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
5617 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
5619 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
5784 commands?: CodeActionCommand[];
5798 commands?: readonly CodeActionCommand[];
5800 type CodeActionCommand = InstallPackageAction; alias
5859 commands?: CodeActionCommand[];
DtypescriptServices.d.ts5611 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
5612 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
5613 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
5615 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
5617 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
5619 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
5784 commands?: CodeActionCommand[];
5798 commands?: readonly CodeActionCommand[];
5800 type CodeActionCommand = InstallPackageAction; alias
5859 commands?: CodeActionCommand[];
Dtsserverlibrary.d.ts5611 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
5612 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
5613 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
5615 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
5617 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
5619 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
5784 commands?: CodeActionCommand[];
5798 commands?: readonly CodeActionCommand[];
5800 type CodeActionCommand = InstallPackageAction; alias
5859 commands?: CodeActionCommand[];
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts5854 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
5855 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
5856 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
5858 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
5860 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
5862 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6027 commands?: CodeActionCommand[];
6041 commands?: readonly CodeActionCommand[];
6043 type CodeActionCommand = InstallPackageAction; alias
6102 commands?: CodeActionCommand[];
Dtsserverlibrary.d.ts5854 …applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<Ap…
5855 …applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<…
5856 …applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCod…
5858 …applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionComman…
5860 …applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionComm…
5862 …applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise…
6027 commands?: CodeActionCommand[];
6041 commands?: readonly CodeActionCommand[];
6043 type CodeActionCommand = InstallPackageAction; alias
6102 commands?: CodeActionCommand[];
/third_party/typescript/src/server/
Dsession.ts2218 …const commands = args.command as CodeActionCommand | CodeActionCommand[]; // They should be sendin…