Record STR-057 closeout hash

This commit is contained in:
2026-06-14 05:30:34 +02:00
parent 05386598fc
commit 8f02e39058
2 changed files with 26 additions and 0 deletions

View File

@@ -18,6 +18,10 @@ agent or engineer to remove them without reconstructing context from chat.
## Recent Reductions ## Recent Reductions
- 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::stroke_commit()` now
routes the retained request-dispatch invocation through
`execute_canvas_stroke_commit_dispatch(...)`; the wrapper still owns the
state capture and helper dispatch.
- 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::stroke_commit()` now - 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::stroke_commit()` now
routes the retained sequence plan assembly through routes the retained sequence plan assembly through
`make_canvas_stroke_commit_sequence_plan(...)`; the wrapper still owns the `make_canvas_stroke_commit_sequence_plan(...)`; the wrapper still owns the

View File

@@ -2325,6 +2325,28 @@ Done Checks:
- `docs/modernization/debt.md` records the reduced stroke-commit planning - `docs/modernization/debt.md` records the reduced stroke-commit planning
surface. surface.
### STR-057 - Extract Stroke Commit Request Dispatch Invocation
Status: Done
Score: no score movement
Debt: `DEBT-0036`
Scope: `src/canvas.cpp`, `tests/paint_renderer/stroke_execution_tests.cpp`
Closeout: `05386598`
Goal:
Move the remaining `Canvas::stroke_commit()` request-dispatch invocation into
a helper so the callsite keeps only state capture and helper dispatch.
Done Checks:
- `Canvas::stroke_commit()` no longer spells the request-dispatch invocation
inline.
- Regression coverage proves the helper preserves the retained dispatch
arguments.
- `docs/modernization/debt.md` records the reduced stroke-commit dispatch
surface.
Validation: Validation:
```powershell ```powershell