Step 45 TDD test: Tree-sitter Python integration

Tests parsePython() produces real AST: Function with name, Parameters,
Return with BinaryOperation, and auto-annotation with @Reclaim(Tracing).
Tests multiple functions parsed. Will fail until real tree-sitter-python
replaces the placeholder stub.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:21:27 -07:00
parent 7a847c4f03
commit d8a67cfe10
2 changed files with 162 additions and 0 deletions

View File

@@ -148,6 +148,9 @@ target_include_directories(step43_test PRIVATE src)
add_executable(step44_test tests/step44_test.cpp)
target_include_directories(step44_test PRIVATE src)
add_executable(step45_test tests/step45_test.cpp)
target_include_directories(step45_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