()
| 4379 | |
| 4380 | cancelCurrentOperation(): void { |
| 4381 | if (this.activeToken && !this.activeToken.aborted) |
| 4382 | this.activeToken.abort("操作被取消"); |
| 4383 | this.activeToken = undefined; |
| 4384 | } |
| 4385 | |
| 4386 | private async runQuestion( |
| 4387 | msg: Api.Message, |
| 4388 | question: string, |
no test coverage detected