| 54 | |
| 55 | @dataclass(frozen=True) |
| 56 | class FileCacheEntry: |
| 57 | file_path: str |
| 58 | file_hash: str # sha256 of full file content |
| 59 | mtime: float |
| 60 | full_ast_json_z: bytes # zlib-compressed full AST JSON string |
| 61 | chunks: Dict[str, AstChunk] |
| 62 | version: int = CACHE_VERSION |
| 63 | |
| 64 | |
| 65 | # ── Chunking helpers ───────────────────────────────────────────────────────── |
no outgoing calls