(startOffset: number)
| 1304 | for (let i = 0; i < lines.length; i++) { |
| 1305 | const text = lines[i]! |
| 1306 | const isPrecededByNewline = (startOffset: number) => |
| 1307 | i === 0 || (startOffset > 0 && this.text[startOffset - 1] === '\n') |
| 1308 | |
| 1309 | if (text.length === 0) { |
| 1310 | // For blank lines, find the next newline character after the last one |
nothing calls this directly
no outgoing calls
no test coverage detected