(text, markedSpans, estimateHeight)
| 2780 | // Line objects. These hold state related to a line, including |
| 2781 | // highlighting info (the styles array). |
| 2782 | var Line = function (text, markedSpans, estimateHeight) { |
| 2783 | this.text = text |
| 2784 | attachMarkedSpans(this, markedSpans) |
| 2785 | this.height = estimateHeight ? estimateHeight(this) : 1 |
| 2786 | } |
| 2787 | |
| 2788 | Line.prototype.lineNo = function () { |
| 2789 | return lineNo(this) |
nothing calls this directly
no test coverage detected