(name: string)
| 1200 | discard(cp: EngineCheckpoint): void { |
| 1201 | discardCheckpoint(this, cp); |
| 1202 | } |
| 1203 | |
| 1204 | /** The state-event choke point — see `IComputeEngine._noteStateEvent`. |
| 1205 | * @internal */ |
| 1206 | _noteStateEvent(event: StateEvent): void { |
| 1207 | // Bypass canary (`CE_CHECKPOINT_CANARY`, off by default): tally the event |
| 1208 | // against the active journal window, so the differential harness can find |
| 1209 | // an event KIND the window saw with no journaling hook of that kind |
| 1210 | // behind it. Counts are never compared — first-write dedup makes them |
| 1211 | // incomparable by design. |
| 1212 | if (CHECKPOINT_CANARY) this._checkpointWindow?.noteEvent(event.kind); |
| 1213 | this._configurationLifecycle.noteStateEvent(event); |
nothing calls this directly
no test coverage detected