Merge pull request 'fix: No-op varCounter assignment before false branch in processExecIf (#655)' (#803) from fix/issue-655 into master

This commit is contained in:
johba 2026-03-15 06:47:02 +01:00
commit a983c5cb16
2 changed files with 1 additions and 1 deletions

View file

@ -42,3 +42,4 @@
- [2026-03-15] manifest.jsonl schema has no canonical machine-readable definition (#720)
- [2026-03-15] CID format change silently drops historical generation JSONL on re-admission (#757): warn on unrecognised CID format instead of silently skipping
- [2026-03-15] evolve.sh does not write `note` field — schema drift between hand-written and evolved entries (#719): auto-generate note "Evolved from <seed> (run<N> gen<G>)" for every admitted entry
- [2026-03-15] No-op varCounter assignment before false branch in processExecIf (#655)

View file

@ -254,7 +254,6 @@ function processExecIf(
// --- Simulate FALSE branch ---
const falseState = makeSubState(state);
state.varCounter = falseState.varCounter; // will be updated after false branch too
processItems(toItems(falseBranch), falseState);
state.varCounter = falseState.varCounter;