(action)
| 480 | } |
| 481 | |
| 482 | _renderQPush(action) { |
| 483 | this._renderQ.push(action); |
| 484 | if (this._renderQ.length === 1) { |
| 485 | // If this can be rendered immediately it will be, otherwise |
| 486 | // the scanner will wait for the relevant event |
| 487 | this._scanRenderQ(); |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | _resumeRenderQ() { |
| 492 | // "this" is the object that is ready, not the |
no test coverage detected