Step 68 TDD test: Transformation engine

Tests TransformEngine: constant folding (3+4->7), dead code elimination
after return, OptimizationLock produces warning but doesn't block, and
no-op when nothing to transform. Defines TransformEngine interface.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:30:51 -07:00
parent 89778c4b02
commit 01a094f28e
2 changed files with 219 additions and 0 deletions

View File

@@ -193,6 +193,9 @@ target_include_directories(step66_test PRIVATE src)
add_executable(step67_test tests/step67_test.cpp)
target_include_directories(step67_test PRIVATE src)
add_executable(step68_test tests/step68_test.cpp)
target_include_directories(step68_test PRIVATE src)
add_executable(whetstone_editor src/main.cpp)
target_include_directories(whetstone_editor PRIVATE src)
# find_package(SDL2 REQUIRED) # Commented out for now to avoid build issues