(fiber)
| 3066 | } |
| 3067 | |
| 3068 | function assertIsMounted(fiber) { |
| 3069 | if (!(getNearestMountedFiber(fiber) === fiber)) { |
| 3070 | { |
| 3071 | throw Error( "Unable to find node on an unmounted component." ); |
| 3072 | } |
| 3073 | } |
| 3074 | } |
| 3075 | |
| 3076 | function findCurrentFiberUsingSlowPath(fiber) { |
| 3077 | var alternate = fiber.alternate; |
no test coverage detected