(
scriptId, startPosition, endPosition, duration, timestamp, functionName)
| 971 | } |
| 972 | |
| 973 | processParseEval( |
| 974 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
| 975 | if (startPosition != 0 && startPosition != -1) { |
| 976 | console.error('Invalid start position for parse-eval', arguments); |
| 977 | } |
| 978 | let script = this.processParseScript(...arguments); |
| 979 | script.isEval = true; |
| 980 | } |
| 981 | |
| 982 | processFull( |
| 983 | scriptId, startPosition, endPosition, duration, timestamp, functionName) { |
nothing calls this directly
no test coverage detected