(doc, lineN)
| 5418 | // Get the line number of the start of the visual line that the |
| 5419 | // given line number is part of. |
| 5420 | function visualLineNo(doc, lineN) { |
| 5421 | var line = getLine(doc, lineN), vis = visualLine(line); |
| 5422 | if (line == vis) return lineN; |
| 5423 | return lineNo(vis); |
| 5424 | } |
| 5425 | // Get the line number of the start of the next visual line after |
| 5426 | // the given line. |
| 5427 | function visualLineEndNo(doc, lineN) { |
no test coverage detected
searching dependent graphs…