Result of pulling the ``-D``/``-I`` tokens back out of fbuild's cc_flags.
| 223 | @typechecked |
| 224 | @dataclass(frozen=True) |
| 225 | class SplitFlags: |
| 226 | """Result of pulling the ``-D``/``-I`` tokens back out of fbuild's cc_flags.""" |
| 227 | |
| 228 | pure: list[str] |
| 229 | defines: list[str] |
| 230 | includes: list[str] |
| 231 | |
| 232 | |
| 233 | def _split_fbuild_combined_flags(cc_flags: list[str]) -> SplitFlags: |
no outgoing calls
no test coverage detected