MCPcopy Index your code
hub / github.com/DHTMLX/gantt / visualLineContinued

Function visualLineContinued

samples/common/codehighlight/codemirror.js:1563–1570  ·  view source on GitHub ↗
(line)

Source from the content-addressed store, hash-verified

1561 // Returns an array of logical lines that continue the visual line
1562 // started by the argument, or undefined if there are no such lines.
1563 function visualLineContinued(line) {
1564 var merged, lines;
1565 while (merged = collapsedSpanAtEnd(line)) {
1566 line = merged.find(1, true).line
1567 ;(lines || (lines = [])).push(line);
1568 }
1569 return lines
1570 }
1571
1572 // Get the line number of the start of the visual line that the
1573 // given line number is part of.

Callers 1

LineViewFunction · 0.85

Calls 1

collapsedSpanAtEndFunction · 0.85

Tested by

no test coverage detected