(text: string)
| 138 | let pendingStreamedSummary: SummaryTextBlock | null = null; |
| 139 | |
| 140 | function writeDurable(text: string): void { |
| 141 | sink.clearTransient(); |
| 142 | pendingTransientRuntimeLine = null; |
| 143 | hasDurableRuntimeContent = true; |
| 144 | sink.writeDurable(text); |
| 145 | } |
| 146 | |
| 147 | function writeSection(text: string): void { |
| 148 | sink.clearTransient(); |
no test coverage detected