(line)
| 1545 | // visual line. This finds the start of the visual line that the |
| 1546 | // given line is part of (usually that is the line itself). |
| 1547 | function visualLine(line) { |
| 1548 | var merged; |
| 1549 | while (merged = collapsedSpanAtStart(line)) |
| 1550 | { line = merged.find(-1, true).line; } |
| 1551 | return line |
| 1552 | } |
| 1553 | |
| 1554 | function visualLineEnd(line) { |
| 1555 | var merged; |
no test coverage detected