(fiber)
| 6638 | } |
| 6639 | |
| 6640 | function assertIsMounted(fiber) { |
| 6641 | if (!(getNearestMountedFiber(fiber) === fiber)) { |
| 6642 | { |
| 6643 | throw Error( "Unable to find node on an unmounted component." ); |
| 6644 | } |
| 6645 | } |
| 6646 | } |
| 6647 | |
| 6648 | function findCurrentFiberUsingSlowPath(fiber) { |
| 6649 | var alternate = fiber.alternate; |
no test coverage detected