(flag: str)
| 1907 | |
| 1908 | # Determine whether a flag should be passed through. |
| 1909 | def should_passthrough(flag: str) -> bool: |
| 1910 | return flag_match(flag, CFLAG_PASSTHROUGH, CFLAG_PASSTHROUGH_PREFIX) |
| 1911 | |
| 1912 | # Attempts replacement for the given flag. |
| 1913 | def try_replace(flag: str) -> bool: |
no test coverage detected