(line, height)
| 4586 | } |
| 4587 | |
| 4588 | function updateLineHeight(line, height) { |
| 4589 | var diff = height - line.height; |
| 4590 | for (var n = line; n; n = n.parent) n.height += diff; |
| 4591 | } |
| 4592 | |
| 4593 | function lineNo(line) { |
| 4594 | if (line.parent == null) return null; |
no outgoing calls
no test coverage detected