(line)
| 6598 | // Returns an array of logical lines that continue the visual line |
| 6599 | // started by the argument, or undefined if there are no such lines. |
| 6600 | function visualLineContinued(line) { |
| 6601 | var merged, lines; |
| 6602 | while (merged = collapsedSpanAtEnd(line)) { |
| 6603 | line = merged.find(1, true).line; |
| 6604 | (lines || (lines = [])).push(line); |
| 6605 | } |
| 6606 | return lines; |
| 6607 | } |
| 6608 | |
| 6609 | // Get the line number of the start of the visual line that the |
| 6610 | // given line number is part of. |
no test coverage detected