(
text: string,
readonly columns: number,
)
| 1129 | private graphemeBoundaries?: number[] |
| 1130 | |
| 1131 | constructor( |
| 1132 | text: string, |
| 1133 | readonly columns: number, |
| 1134 | ) { |
| 1135 | this.text = text.normalize('NFC') |
| 1136 | this.navigationCache = new Map() |
| 1137 | } |
| 1138 | |
| 1139 | /** |
| 1140 | * Lazily computes and caches wrapped lines. |
nothing calls this directly
no outgoing calls
no test coverage detected