(parentTree, childTree)
| 1429 | } |
| 1430 | |
| 1431 | function queueChild(parentTree, childTree) { |
| 1432 | if (enableLazy) { |
| 1433 | parentTree.children.push(childTree); |
| 1434 | } else { |
| 1435 | parentTree.node.appendChild(childTree.node); |
| 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | function queueHTML(tree, html) { |
| 1440 | if (enableLazy) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…