(workInProgress: Fiber)
| 87 | let treeContextOverflow: string = ''; |
| 88 | |
| 89 | export function isForkedChild(workInProgress: Fiber): boolean { |
| 90 | warnIfNotHydrating(); |
| 91 | return (workInProgress.flags & Forked) !== NoFlags; |
| 92 | } |
| 93 | |
| 94 | export function getForksAtLevel(workInProgress: Fiber): number { |
| 95 | warnIfNotHydrating(); |
no test coverage detected