(line)
| 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. |
| 5409 | function visualLineContinued(line) { |
| 5410 | var merged, lines; |
| 5411 | while (merged = collapsedSpanAtEnd(line)) { |
| 5412 | line = merged.find(1, true).line; |
| 5413 | (lines || (lines = [])).push(line); |
| 5414 | } |
| 5415 | return lines; |
| 5416 | } |
| 5417 | |
| 5418 | // Get the line number of the start of the visual line that the |
| 5419 | // given line number is part of. |
no test coverage detected
searching dependent graphs…