feat(sdm): inject structural dependency mapping tags across codebase

Adds [C: caller] tags to functions/methods and [M: mutation] / [U: usage] tags to class variables based on cross-module call analysis.
This commit is contained in:
2026-05-13 22:35:41 -04:00
parent 5bb3a9026f
commit b5e512f483
110 changed files with 1673 additions and 1008 deletions
+7 -6
View File
@@ -14,12 +14,13 @@ from src import api_hook_client
def test_workspace_profiles_restoration(live_gui):
"""
Verifies that workspace profiles can save and restore UI state.
1. Sets a field (ui_separate_tier1) to True.
2. Saves a workspace profile.
3. Resets the field to False.
4. Loads the workspace profile.
5. Verifies the field is restored to True.
Verifies that workspace profiles can save and restore UI state.
1. Sets a field (ui_separate_tier1) to True.
2. Saves a workspace profile.
3. Resets the field to False.
4. Loads the workspace profile.
5. Verifies the field is restored to True.
"""
client = api_hook_client.ApiHookClient()
assert client.wait_for_server(timeout=20), "Hook server did not start"