(
start, scriptId, startPos, endPos, sourcePositions, inliningPositions,
inlinedFunctions)
| 466 | } |
| 467 | |
| 468 | processCodeSourceInfo( |
| 469 | start, scriptId, startPos, endPos, sourcePositions, inliningPositions, |
| 470 | inlinedFunctions) { |
| 471 | this._profile.addSourcePositions( |
| 472 | start, scriptId, startPos, endPos, sourcePositions, inliningPositions, |
| 473 | inlinedFunctions); |
| 474 | if (this._lastCodeLogEntry === undefined) return; |
| 475 | let profileEntry = this._profile.findEntry(start); |
| 476 | if (profileEntry !== this._lastCodeLogEntry._entry) return; |
| 477 | this.addSourcePosition(profileEntry, this._lastCodeLogEntry); |
| 478 | this._lastCodeLogEntry = undefined; |
| 479 | } |
| 480 | |
| 481 | addSourcePosition(profileEntry, logEntry) { |
| 482 | let script = this.getProfileEntryScript(profileEntry); |
nothing calls this directly
no test coverage detected