(node)
| 582 | } |
| 583 | const walker = parent.ownerDocument.createTreeWalker(parent, SHOW_ELEMENT | SHOW_COMMENT, { |
| 584 | acceptNode(node) { |
| 585 | if (isContainer(node)) { |
| 586 | return FILTER_REJECT; |
| 587 | } |
| 588 | const v = predicate(node); |
| 589 | if (v !== undefined) { |
| 590 | results.push(v); |
| 591 | } |
| 592 | return FILTER_SKIP; |
| 593 | }, |
| 594 | }); |
| 595 | while (walker.nextNode()) { |
| 596 | // do nothing |
nothing calls this directly
no test coverage detected
searching dependent graphs…