(msg)
| 434 | } |
| 435 | |
| 436 | _handleRowDescription(msg) { |
| 437 | const activeQuery = this._getActiveQuery() |
| 438 | if (activeQuery == null) { |
| 439 | const error = new Error('Received unexpected rowDescription message from backend.') |
| 440 | this._handleErrorEvent(error) |
| 441 | return |
| 442 | } |
| 443 | // delegate rowDescription to active query |
| 444 | activeQuery.handleRowDescription(msg) |
| 445 | } |
| 446 | |
| 447 | _handleDataRow(msg) { |
| 448 | const activeQuery = this._getActiveQuery() |
nothing calls this directly
no test coverage detected