(cm, line, diff)
| 6642 | eventMixin(LineWidget); |
| 6643 | |
| 6644 | function adjustScrollWhenAboveVisible(cm, line, diff) { |
| 6645 | if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop)) |
| 6646 | addToScrollPos(cm, null, diff); |
| 6647 | } |
| 6648 | |
| 6649 | LineWidget.prototype.clear = function() { |
| 6650 | var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line); |
no test coverage detected