(path: str)
| 107 | |
| 108 | |
| 109 | def _has_dot_components(path: str) -> bool: |
| 110 | for part in path.split("/"): |
| 111 | if part in (".", ".."): |
| 112 | return True |
| 113 | return False |
| 114 | |
| 115 | |
| 116 | def normalize_meson_private_include_paths(build_dir: Path) -> bool: |
no outgoing calls
no test coverage detected