We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2d71e commit 9dbbe69Copy full SHA for 9dbbe69
src/vs/base/parts/ipc/common/ipc.ts
@@ -24,7 +24,12 @@ enum MessageType {
24
}
25
26
function isResponse(messageType: MessageType): boolean {
27
- return messageType >= MessageType.ResponseInitialize;
+ return messageType === MessageType.ResponseInitialize
28
+ || messageType === MessageType.ResponsePromiseSuccess
29
+ || messageType === MessageType.ResponsePromiseProgress
30
+ || messageType === MessageType.ResponsePromiseError
31
+ || messageType === MessageType.ResponsePromiseErrorObj
32
+ || messageType === MessageType.ResponseEventFire;
33
34
35
interface IRawMessage {
0 commit comments