(
scriptId, startPosition, endPosition, duration, timestamp, functionName)
| 1048 | } |
| 1049 | |
| 1050 | processCompileLazy( |
| 1051 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
| 1052 | let funktion = this.getOrCreateFunction(...arguments); |
| 1053 | funktion.lazyCompileTimestamp = startOf(timestamp, duration); |
| 1054 | funktion.lazyCompileDuration = duration; |
| 1055 | } |
| 1056 | |
| 1057 | processCompile( |
| 1058 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
nothing calls this directly
no test coverage detected