Step 51 TDD test: Text-AST synchronization

Tests bidirectional sync: text->parse->AST, AST mutation->text regen,
round-trip preservation, debounce coalescing of rapid edits, and
C++ text sync. Defines TextASTSync interface.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:23:11 -07:00
parent e0c5bf2a9e
commit 76ae96cdb4
2 changed files with 159 additions and 0 deletions

View File

@@ -157,6 +157,9 @@ target_include_directories(step46_test PRIVATE src)
add_executable(step47_test tests/step47_test.cpp)
target_include_directories(step47_test PRIVATE src)
add_executable(step51_test tests/step51_test.cpp)
target_include_directories(step51_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