(current: Fiber)
| 87 | import {runWithFiberInDEV} from './ReactCurrentFiber'; |
| 88 | |
| 89 | function shouldProfile(current: Fiber): boolean { |
| 90 | return ( |
| 91 | enableProfilerTimer && |
| 92 | enableProfilerCommitHooks && |
| 93 | (current.mode & ProfileMode) !== NoMode |
| 94 | ); |
| 95 | } |
| 96 | |
| 97 | export function commitHookLayoutEffects( |
| 98 | finishedWork: Fiber, |
no outgoing calls
no test coverage detected