()
| 207 | } |
| 208 | |
| 209 | ensureChild() { |
| 210 | debug(`enter ensureChild(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 211 | this._checkState(); |
| 212 | |
| 213 | if (this.state == CREATED) { |
| 214 | this._startChild(); |
| 215 | } |
| 216 | |
| 217 | this._checkState(); |
| 218 | debug(`exit ensureChild(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 219 | } |
| 220 | |
| 221 | _startChild() { |
| 222 | debug(`enter _startChild(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
no test coverage detected