()
| 97 | } |
| 98 | |
| 99 | export function getTreeId(): string { |
| 100 | const overflow = treeContextOverflow; |
| 101 | const idWithLeadingBit = treeContextId; |
| 102 | const id = idWithLeadingBit & ~getLeadingBit(idWithLeadingBit); |
| 103 | return id.toString(32) + overflow; |
| 104 | } |
| 105 | |
| 106 | export function pushTreeFork( |
| 107 | workInProgress: Fiber, |
no test coverage detected