(profileEntry, logEntry)
| 479 | } |
| 480 | |
| 481 | addSourcePosition(profileEntry, logEntry) { |
| 482 | let script = this.getProfileEntryScript(profileEntry); |
| 483 | const parts = profileEntry.getRawName().split(':'); |
| 484 | if (parts.length < 3) return; |
| 485 | const line = parseInt(parts[parts.length - 2]); |
| 486 | const column = parseInt(parts[parts.length - 1]); |
| 487 | logEntry.sourcePosition = script.addSourcePosition(line, column, logEntry); |
| 488 | } |
| 489 | |
| 490 | processCodeDisassemble(start, kind, disassemble) { |
| 491 | this._profile.addDisassemble(start, kind, disassemble); |
no test coverage detected