(self, uri)
| 162 | return None |
| 163 | |
| 164 | def optionsForFile(self, uri): |
| 165 | file_path = uri2realpath(uri) |
| 166 | flags = GetFlags(file_path, self.compile_file, store=self.store) |
| 167 | if not flags and file_path.endswith(".swift"): |
| 168 | flags = InferFlagsForSwift(file_path, self.compile_file, store=self.store) |
| 169 | return self.optionsForFlags(flags) |
| 170 | |
| 171 | def optionsForFlags(self, flags): |
| 172 | if flags is None: |
no test coverage detected