(id: str, path: str, options: Options)
| 405 | |
| 406 | |
| 407 | def get_ir_cache_name(id: str, path: str, options: Options) -> str: |
| 408 | meta_path, _, _ = get_cache_names(id, path, options) |
| 409 | # Mypyc uses JSON cache even with --fixed-format-cache (for now). |
| 410 | return meta_path.replace(".meta.json", ".ir.json").replace(".meta.ff", ".ir.json") |
| 411 | |
| 412 | |
| 413 | def get_state_ir_cache_name(state: State) -> str: |
no test coverage detected
searching dependent graphs…