(id, time)
| 594 | } |
| 595 | |
| 596 | createMapEntry(id, time) { |
| 597 | this._lastTimestamp = time; |
| 598 | const map = new MapLogEntry(id, time); |
| 599 | this._mapTimeline.push(map); |
| 600 | return map; |
| 601 | } |
| 602 | |
| 603 | getOrCreateMapEntry(id, time) { |
| 604 | if (id === '0x000000000000') return undefined; |
no test coverage detected