Function
convert_binary_cache_to_json
(data: bytes, *, implicit_names: bool = True)
Source from the content-addressed store, hash-verified
| 78 | |
| 79 | |
| 80 | def convert_binary_cache_to_json(data: bytes, *, implicit_names: bool = True) -> Json: |
| 81 | tree = MypyFile.read(ReadBuffer(data)) |
| 82 | return convert_mypy_file_to_json(tree, Config(implicit_names=implicit_names)) |
| 83 | |
| 84 | |
| 85 | def convert_mypy_file_to_json(self: MypyFile, cfg: Config) -> Json: |
Used in the wild real call sites across dependent graphs
searching dependent graphs…