(time, vmState, processedStack)
| 7 | |
| 8 | export class TickLogEntry extends LogEntry { |
| 9 | constructor(time, vmState, processedStack) { |
| 10 | super(TickLogEntry.extractType(vmState, processedStack), time); |
| 11 | /** @type {string} */ |
| 12 | this.state = vmState; |
| 13 | /** @type {CodeEntry[]} */ |
| 14 | this.stack = processedStack; |
| 15 | /** @type {number} */ |
| 16 | this._endTime = time; |
| 17 | } |
| 18 | |
| 19 | end(time) { |
| 20 | if (this.isInitialized) throw new Error('Invalid timer change'); |
nothing calls this directly
no test coverage detected