(line)
| 5398 | // visual line. This finds the start of the visual line that the |
| 5399 | // given line is part of (usually that is the line itself). |
| 5400 | function visualLine(line) { |
| 5401 | var merged; |
| 5402 | while (merged = collapsedSpanAtStart(line)) |
| 5403 | line = merged.find(-1, true).line; |
| 5404 | return line; |
| 5405 | } |
| 5406 | |
| 5407 | // Returns an array of logical lines that continue the visual line |
| 5408 | // started by the argument, or undefined if there are no such lines. |
no test coverage detected
searching dependent graphs…