(line)
| 6564 | // visual line. This finds the start of the visual line that the |
| 6565 | // given line is part of (usually that is the line itself). |
| 6566 | function visualLine(line) { |
| 6567 | var merged; |
| 6568 | while (merged = collapsedSpanAtStart(line)) |
| 6569 | line = merged.find(-1, true).line; |
| 6570 | return line; |
| 6571 | } |
| 6572 | |
| 6573 | // Returns an array of logical lines that continue the visual line |
| 6574 | // started by the argument, or undefined if there are no such lines. |
no test coverage detected