(msg)
| 467 | } |
| 468 | |
| 469 | _handleEmptyQuery(msg) { |
| 470 | const activeQuery = this._getActiveQuery() |
| 471 | if (activeQuery == null) { |
| 472 | const error = new Error('Received unexpected emptyQuery message from backend.') |
| 473 | this._handleErrorEvent(error) |
| 474 | return |
| 475 | } |
| 476 | // delegate emptyQuery to active query |
| 477 | activeQuery.handleEmptyQuery(this.connection) |
| 478 | } |
| 479 | |
| 480 | _handleCommandComplete(msg) { |
| 481 | const activeQuery = this._getActiveQuery() |
nothing calls this directly
no test coverage detected