(self, *args, **kwargs)
| 20 | """Test case using llvm's FileCheck.""" |
| 21 | |
| 22 | def __init__(self, *args, **kwargs): |
| 23 | super().__init__(*args, **kwargs) |
| 24 | self._source_flags = self._parse_source_flags() |
| 25 | |
| 26 | def _get_source_flags(self): |
| 27 | return self._source_flags |
nothing calls this directly
no test coverage detected