Step 62 TDD test: Context API

Tests getInScopeSymbols with nested scoping (inner sees outer, not
vice versa), getCallHierarchy for caller/callee tracking, and
getDependencyGraph for data flow. Defines ContextAPI interface.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:26:57 -07:00
parent 9a7d180522
commit 761e37b369
2 changed files with 211 additions and 0 deletions

View File

@@ -175,6 +175,9 @@ target_include_directories(step60_test PRIVATE src)
add_executable(step61_test tests/step61_test.cpp)
target_include_directories(step61_test PRIVATE src)
add_executable(step62_test tests/step62_test.cpp)
target_include_directories(step62_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