(options, i)
| 968 | function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size} |
| 969 | |
| 970 | function lineNumberFor(options, i) { |
| 971 | return String(options.lineNumberFormatter(i + options.firstLineNumber)) |
| 972 | } |
| 973 | |
| 974 | // A Pos instance represents a position within the text. |
| 975 | function Pos(line, ch, sticky) { |
no outgoing calls
no test coverage detected