(msg)
| 478 | } |
| 479 | |
| 480 | _handleCommandComplete(msg) { |
| 481 | const activeQuery = this._getActiveQuery() |
| 482 | if (activeQuery == null) { |
| 483 | const error = new Error('Received unexpected commandComplete message from backend.') |
| 484 | this._handleErrorEvent(error) |
| 485 | return |
| 486 | } |
| 487 | // delegate commandComplete to active query |
| 488 | activeQuery.handleCommandComplete(msg, this.connection) |
| 489 | } |
| 490 | |
| 491 | _handleParseComplete() { |
| 492 | const activeQuery = this._getActiveQuery() |
nothing calls this directly
no test coverage detected