(line, height)
| 5235 | } |
| 5236 | |
| 5237 | function updateLineHeight(line, height) { |
| 5238 | var diff = height - line.height; |
| 5239 | for (var n = line; n; n = n.parent) n.height += diff; |
| 5240 | } |
| 5241 | |
| 5242 | function lineNo(line) { |
| 5243 | if (line.parent == null) return null; |
no outgoing calls
no test coverage detected