()
| 132 | let nextRenderShouldStartNewBatch: boolean = false; |
| 133 | |
| 134 | function getRelativeTime() { |
| 135 | const currentTime = getCurrentTime(); |
| 136 | |
| 137 | if (currentTimelineData) { |
| 138 | if (currentTimelineData.startTime === 0) { |
| 139 | currentTimelineData.startTime = currentTime - TIME_OFFSET; |
| 140 | } |
| 141 | |
| 142 | return currentTime - currentTimelineData.startTime; |
| 143 | } |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | function getInternalModuleRanges() { |
| 149 | /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */ |
no test coverage detected