progress - don't rethrow errors on main side

This commit is contained in:
Johannes Rieken
2017-01-18 16:51:50 +01:00
parent 95d1342bbe
commit 3186c15c7f
3 changed files with 7 additions and 11 deletions

View File

@@ -187,7 +187,7 @@ export abstract class MainThreadOutputServiceShape {
export abstract class MainThreadProgressShape {
$progressStart(handle: number, extensionId: string, location: string): void { throw ni(); }
$progressReport(handle: number, message: string): void { throw ni(); }
$progressEnd(handle: number, err?: any): void { throw ni(); }
$progressEnd(handle: number): void { throw ni(); }
}
export abstract class MainThreadTerminalServiceShape {