(cm, line, diff)
| 5476 | eventMixin(LineWidget); |
| 5477 | |
| 5478 | function adjustScrollWhenAboveVisible(cm, line, diff) { |
| 5479 | if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop)) |
| 5480 | addToScrollPos(cm, null, diff); |
| 5481 | } |
| 5482 | |
| 5483 | LineWidget.prototype.clear = function() { |
| 5484 | var cm = this.cm, ws = this.line.widgets, line = this.line, no = lineNo(line); |
no test coverage detected
searching dependent graphs…