(flag: str)
| 1903 | |
| 1904 | # Determine whether a flag should be ignored. |
| 1905 | def should_ignore(flag: str) -> bool: |
| 1906 | return flag_match(flag, CFLAG_IGNORE, CFLAG_IGNORE_PREFIX) |
| 1907 | |
| 1908 | # Determine whether a flag should be passed through. |
| 1909 | def should_passthrough(flag: str) -> bool: |
no test coverage detected