Home | History | Annotate | Download | only in front-end

Lines Matching refs:endLine

53     highlight: function(endLine, opt_forceRun)
56 var state = this._textModel.getAttribute(endLine - 1, "highlight");
62 this._requestedEndLine = endLine;
65 // There is a timer scheduled, it will catch the new job based on the new endLine set.
70 var startLine = endLine;
79 this._highlightInChunks(startLine, endLine);
82 updateHighlight: function(startLine, endLine)
84 // Start line was edited, we should highlight everything until endLine.
95 var restored = this._highlightLines(startLine, endLine);
99 if (!state && i > endLine)
107 this._requestedEndLine = endLine;
114 _highlightInChunks: function(startLine, endLine)
123 if (this._requestedEndLine !== endLine) {
140 _highlightLines: function(startLine, endLine)
147 for (var lineNumber = startLine; lineNumber < endLine; ++lineNumber) {
195 for (; lineNumber < endLine; ++lineNumber) {