(line, height)
| 533 | |
| 534 | function getLine(n) { return getLineAt(doc, n); } |
| 535 | function updateLineHeight(line, height) { |
| 536 | gutterDirty = true; |
| 537 | var diff = height - line.height; |
| 538 | for (var n = line; n; n = n.parent) n.height += diff; |
| 539 | } |
| 540 | |
| 541 | function setValue(code) { |
| 542 | var top = {line: 0, ch: 0}; |
no outgoing calls
no test coverage detected