* Sets the `HierarchyFacts` for this node prior to visiting this node's subtree, returning the facts set prior to modification. * @param excludeFacts The existing `HierarchyFacts` to reset before visiting the subtree. * @param includeFacts The new `HierarchyFacts` to set before vis
(excludeFacts, includeFacts)
| 96541 | * @param includeFacts The new `HierarchyFacts` to set before visiting the subtree. |
| 96542 | */ |
| 96543 | function enterSubtree(excludeFacts, includeFacts) { |
| 96544 | var ancestorFacts = hierarchyFacts; |
| 96545 | hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & 3 /* HierarchyFacts.AncestorFactsMask */; |
| 96546 | return ancestorFacts; |
| 96547 | } |
| 96548 | /** |
| 96549 | * Restores the `HierarchyFacts` for this node's ancestor after visiting this node's |
| 96550 | * subtree. |
no outgoing calls
no test coverage detected
searching dependent graphs…