(
scriptId, startPosition, endPosition, duration, timestamp, functionName)
| 1030 | } |
| 1031 | |
| 1032 | processFirstExecution( |
| 1033 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
| 1034 | let script = this.lookupScript(scriptId); |
| 1035 | if (startPosition === 0) { |
| 1036 | // undefined = eval fn execution |
| 1037 | if (script) { |
| 1038 | script.executionTimestamp = toTimestamp(timestamp); |
| 1039 | } |
| 1040 | } else { |
| 1041 | let funktion = script.getFunktionAtStartPosition(startPosition); |
| 1042 | if (funktion) { |
| 1043 | funktion.executionTimestamp = toTimestamp(timestamp); |
| 1044 | } else { |
| 1045 | // TODO(cbruni): handle funktions from compilation-cache hits. |
| 1046 | } |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | processCompileLazy( |
| 1051 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
nothing calls this directly
no test coverage detected