(tree, html)
| 1437 | } |
| 1438 | |
| 1439 | function queueHTML(tree, html) { |
| 1440 | if (enableLazy) { |
| 1441 | tree.html = html; |
| 1442 | } else { |
| 1443 | tree.node.innerHTML = html; |
| 1444 | } |
| 1445 | } |
| 1446 | |
| 1447 | function queueText(tree, text) { |
| 1448 | if (enableLazy) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…