* Lazily computes and caches wrapped lines. * This expensive operation is deferred until actually needed.
()
| 1141 | * This expensive operation is deferred until actually needed. |
| 1142 | */ |
| 1143 | private get wrappedLines(): WrappedLine[] { |
| 1144 | if (!this._wrappedLines) { |
| 1145 | this._wrappedLines = this.measureWrappedText() |
| 1146 | } |
| 1147 | return this._wrappedLines |
| 1148 | } |
| 1149 | |
| 1150 | private getGraphemeBoundaries(): number[] { |
| 1151 | if (!this.graphemeBoundaries) { |
nothing calls this directly
no test coverage detected