(
self, manager: FineGrainedBuildManager, module_id: str, path: str
)
| 121 | return result |
| 122 | |
| 123 | def build_increment( |
| 124 | self, manager: FineGrainedBuildManager, module_id: str, path: str |
| 125 | ) -> tuple[MypyFile, dict[Expression, Type]]: |
| 126 | manager.flush_cache() |
| 127 | manager.update([(module_id, path)], []) |
| 128 | module = manager.manager.modules[module_id] |
| 129 | type_map = manager.graph[module_id].type_map() |
| 130 | return module, type_map |
| 131 | |
| 132 | def dump( |
| 133 | self, manager: FineGrainedBuildManager, kind: str, test_modules: list[str] |
no test coverage detected