(tree, text)
| 1445 | } |
| 1446 | |
| 1447 | function queueText(tree, text) { |
| 1448 | if (enableLazy) { |
| 1449 | tree.text = text; |
| 1450 | } else { |
| 1451 | setTextContent(tree.node, text); |
| 1452 | } |
| 1453 | } |
| 1454 | |
| 1455 | function DOMLazyTree(node) { |
| 1456 | return { |
nothing calls this directly
no test coverage detected
searching dependent graphs…