Directory where compiled native launchers live.
(project_root: Path)
| 75 | |
| 76 | |
| 77 | def _native_launcher_output_dir(project_root: Path) -> Path: |
| 78 | """Directory where compiled native launchers live.""" |
| 79 | return project_root / ".cached" / "clang-native" |
| 80 | |
| 81 | |
| 82 | def _ensure_native_launcher(project_root: Path) -> tuple[Optional[str], Optional[str]]: |
no outgoing calls
no test coverage detected