(line)
| 1561 | // Returns an array of logical lines that continue the visual line |
| 1562 | // started by the argument, or undefined if there are no such lines. |
| 1563 | function visualLineContinued(line) { |
| 1564 | var merged, lines; |
| 1565 | while (merged = collapsedSpanAtEnd(line)) { |
| 1566 | line = merged.find(1, true).line |
| 1567 | ;(lines || (lines = [])).push(line); |
| 1568 | } |
| 1569 | return lines |
| 1570 | } |
| 1571 | |
| 1572 | // Get the line number of the start of the visual line that the |
| 1573 | // given line number is part of. |
no test coverage detected