(fiber)
| 22649 | return elapsedTime; |
| 22650 | } |
| 22651 | function startProfilerTimer(fiber) { |
| 22652 | profilerStartTime = now(); |
| 22653 | 0 > fiber.actualStartTime && (fiber.actualStartTime = profilerStartTime); |
| 22654 | } |
| 22655 | function stopProfilerTimerIfRunningAndRecordDuration(fiber) { |
| 22656 | if (0 <= profilerStartTime) { |
| 22657 | var elapsedTime = now() - profilerStartTime; |
no outgoing calls
no test coverage detected
searching dependent graphs…