(filename, *,
get_preprocessor,
match_kind=None,
pure=False,
)
| 57 | |
| 58 | |
| 59 | def _iter_preprocessed(filename, *, |
| 60 | get_preprocessor, |
| 61 | match_kind=None, |
| 62 | pure=False, |
| 63 | ): |
| 64 | preprocess = get_preprocessor(filename) |
| 65 | for line in preprocess(tool=not pure) or (): |
| 66 | if match_kind is not None and not match_kind(line.kind): |
| 67 | continue |
| 68 | yield line |
| 69 | |
| 70 | |
| 71 | ####################################### |
no test coverage detected
searching dependent graphs…