feat(mma): Integrate AST skeleton extraction into Tier 3 context build

This commit is contained in:
2026-02-27 22:18:26 -05:00
parent 34bd61aa6c
commit 0ed01aa1c9
3 changed files with 49 additions and 6 deletions

View File

@@ -300,7 +300,7 @@ def get_definition(path: str, name: str) -> str:
try:
import ast
code = p.read_text(encoding="utf-8")
code = p.read_text(encoding="utf-8").lstrip(chr(0xFEFF))
lines = code.splitlines()
tree = ast.parse(code)