(method, params)
| 265 | } |
| 266 | |
| 267 | sendMessageForMethodChecked(method, params) { |
| 268 | const {msgid, msg} = this.createMessage(method, params); |
| 269 | this.sendMessage(msg); |
| 270 | this.takeReplyChecked(msgid); |
| 271 | } |
| 272 | |
| 273 | takeReplyChecked(msgid) { |
| 274 | const reply = this.receivedMessages.get(msgid); |
no test coverage detected