(head: string)
| 1190 | kind: event.kind, |
| 1191 | axis: 'type', |
| 1192 | cause: ctx?.expr, |
| 1193 | epoch: currentBoxingEpoch(this), |
| 1194 | }); |
| 1195 | |
| 1196 | if ( |
| 1197 | event.valueDef !== undefined && |
| 1198 | event.from.isUnknown && |
| 1199 | this._inferenceTxDepth > 0 |
| 1200 | ) { |
| 1201 | const set = (this._freshlyInferred ??= new Set()); |
| 1202 | // Rollback journal (family 6): `.add()` is a silent no-op on a member |
| 1203 | // already present, so record the prior-presence bit — the undo must |
nothing calls this directly
no test coverage detected