(line)
| 1493 | // visual line. This finds the start of the visual line that the |
| 1494 | // given line is part of (usually that is the line itself). |
| 1495 | function visualLine(line) { |
| 1496 | var merged |
| 1497 | while ((merged = collapsedSpanAtStart(line))) { |
| 1498 | line = merged.find(-1, true).line |
| 1499 | } |
| 1500 | return line |
| 1501 | } |
| 1502 | |
| 1503 | function visualLineEnd(line) { |
| 1504 | var merged |
no test coverage detected