MCPcopy Index your code
hub / github.com/witheve/Eve / visualLineContinued

Function visualLineContinued

src/codemirror.js:6600–6607  ·  view source on GitHub ↗
(line)

Source from the content-addressed store, hash-verified

6598 // Returns an array of logical lines that continue the visual line
6599 // started by the argument, or undefined if there are no such lines.
6600 function visualLineContinued(line) {
6601 var merged, lines;
6602 while (merged = collapsedSpanAtEnd(line)) {
6603 line = merged.find(1, true).line;
6604 (lines || (lines = [])).push(line);
6605 }
6606 return lines;
6607 }
6608
6609 // Get the line number of the start of the visual line that the
6610 // given line number is part of.

Callers 1

LineViewFunction · 0.85

Calls 2

collapsedSpanAtEndFunction · 0.85
findMethod · 0.65

Tested by

no test coverage detected