fix undefined promise
This commit is contained in:
parent
cbb489c462
commit
24c2aa73c7
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ export default class TypeScriptServiceClient implements ITypeScriptServiceClient
|
|||
private executeImpl(command: string, args: any, executeInfo: { isAsync: boolean, token?: CancellationToken, expectsResult: boolean, lowPriority?: boolean }): Promise<ServerResponse.Response<Proto.Response>>
|
||||
private executeImpl(command: string, args: any, executeInfo: { isAsync: boolean, token?: CancellationToken, expectsResult: boolean, lowPriority?: boolean }): Promise<ServerResponse.Response<Proto.Response>> | undefined {
|
||||
if (this.servicePromise == null) {
|
||||
return
|
||||
return Promise.resolve(undefined)
|
||||
}
|
||||
|
||||
const request = this._requestQueue.createRequest(command, args)
|
||||
|
|
Loading…
Add table
Reference in a new issue