(flag: str)
| 1698 | |
| 1699 | # Determine whether a flag should be passed through. |
| 1700 | def should_passthrough(flag: str) -> bool: |
| 1701 | return flag_match(flag, CFLAG_PASSTHROUGH, CFLAG_PASSTHROUGH_PREFIX) |
| 1702 | |
| 1703 | # Attempts replacement for the given flag. |
| 1704 | def try_replace(flag: str) -> bool: |
no test coverage detected