Refactor extHostTask (#80970)

so that most of it is in common
This commit is contained in:
Alex Ross
2019-09-16 12:09:14 +02:00
committed by GitHub
parent dac9343583
commit 1c01ce84b5
7 changed files with 743 additions and 605 deletions

View File

@@ -1204,6 +1204,7 @@ export interface ExtHostTaskShape {
$OnDidEndTask(execution: tasks.TaskExecutionDTO): void;
$resolveVariables(workspaceFolder: UriComponents, toResolve: { process?: { name: string; cwd?: string }, variables: string[] }): Promise<{ process?: string; variables: { [key: string]: string } }>;
$getDefaultShellAndArgs(): Thenable<{ shell: string, args: string[] | string | undefined }>;
$jsonTasksSupported(): Thenable<boolean>;
}
export interface IBreakpointDto {