()
| 12095 | return treeForkCount; |
| 12096 | } |
| 12097 | function getTreeId() { |
| 12098 | var overflow = treeContextOverflow; |
| 12099 | var idWithLeadingBit = treeContextId; |
| 12100 | var id = idWithLeadingBit & ~getLeadingBit(idWithLeadingBit); |
| 12101 | return id.toString(32) + overflow; |
| 12102 | } |
| 12103 | function pushTreeFork(workInProgress, totalChildren) { |
| 12104 | // This is called right after we reconcile an array (or iterator) of child |
| 12105 | // fibers, because that's the only place where we know how many children in |
no test coverage detected
searching dependent graphs…