(id, time)
| 601 | } |
| 602 | |
| 603 | getOrCreateMapEntry(id, time) { |
| 604 | if (id === '0x000000000000') return undefined; |
| 605 | const map = MapLogEntry.get(id, time); |
| 606 | if (map !== undefined) return map; |
| 607 | console.warn(`No map details provided: id=${id}`); |
| 608 | // Manually patch in a map to continue running. |
| 609 | return this.createMapEntry(id, time); |
| 610 | } |
| 611 | |
| 612 | getScript(url) { |
| 613 | const script = this._profile.getScript(url); |
no test coverage detected