(value: unknown)
| 439 | } |
| 440 | |
| 441 | recordTodos(value: unknown) { |
| 442 | if (this.interrupted) { |
| 443 | return |
| 444 | } |
| 445 | |
| 446 | const todos = parseTodos(value) |
| 447 | |
| 448 | if (todos !== null) { |
| 449 | patchTurnState({ todos }) |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | private flushPendingToolsIntoLastSegment() { |
| 454 | if (!this.pendingSegmentTools.length) { |
no test coverage detected