()
| 1588 | } |
| 1589 | |
| 1590 | isClearToSend() { |
| 1591 | return this.parent === null || |
| 1592 | ( |
| 1593 | this.parent.waitingOn === this.reportOrder && this.parent.isClearToSend() |
| 1594 | ); |
| 1595 | } |
| 1596 | |
| 1597 | finalize() { |
| 1598 | // By the time this function is called, the following can be relied on: |
no outgoing calls
no test coverage detected