(line, height)
| 333 | |
| 334 | function getLine(n) { return getLineAt(doc, n); } |
| 335 | function updateLineHeight(line, height) { |
| 336 | gutterDirty = true; |
| 337 | var diff = height - line.height; |
| 338 | for (var n = line; n; n = n.parent) n.height += diff; |
| 339 | } |
| 340 | |
| 341 | function setValue(code) { |
| 342 | var top = {line: 0, ch: 0}; |
no outgoing calls
no test coverage detected