* @inheritdoc
()
| 164 | * @inheritdoc |
| 165 | */ |
| 166 | public async terminate(): Promise<void> { |
| 167 | if (this.program) { |
| 168 | await this.program.stop(); |
| 169 | } else { |
| 170 | this.onProgramTerminated({ code: 0, killed: true }); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * @inheritdoc |
no test coverage detected