()
| 539 | } |
| 540 | |
| 541 | private ensureOpen(): void { |
| 542 | if (this.closed) { |
| 543 | throw new KimiError(ErrorCodes.SESSION_CLOSED, 'Session is closed'); |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | private requireSummary(): SessionSummary { |
| 548 | if (this.summary === undefined) { |
no outgoing calls
no test coverage detected