(fiber)
| 22678 | profilerStartTime = now(); |
| 22679 | } |
| 22680 | function transferActualDuration(fiber) { |
| 22681 | for (var child = fiber.child; child; ) |
| 22682 | (fiber.actualDuration += child.actualDuration), (child = child.sibling); |
| 22683 | } |
| 22684 | function createCapturedValueAtFiber(value, source) { |
| 22685 | if ("object" === typeof value && null !== value) { |
| 22686 | var existing = CapturedStacks.get(value); |
no outgoing calls
no test coverage detected
searching dependent graphs…