(tool)
| 250 | |
| 251 | |
| 252 | def _get_preprocessor(tool): |
| 253 | if tool is True: |
| 254 | tool = _get_default_compiler() |
| 255 | preprocess = _COMPILERS.get(tool) |
| 256 | if preprocess is None: |
| 257 | raise ValueError(f'unsupported tool {tool}') |
| 258 | return preprocess |
| 259 | |
| 260 | |
| 261 | ################################## |
no test coverage detected
searching dependent graphs…