(self, line, column, currentFile, fileName)
| 198 | lock = threading.Lock() |
| 199 | |
| 200 | def __init__(self, line, column, currentFile, fileName): |
| 201 | threading.Thread.__init__(self) |
| 202 | self.line = line |
| 203 | self.column = column |
| 204 | self.currentFile = currentFile |
| 205 | self.fileName = fileName |
| 206 | self.result = None |
| 207 | userOptionsGlobal = splitOptions(vim.eval("g:clang_user_options")) |
| 208 | userOptionsLocal = splitOptions(vim.eval("b:clang_user_options")) |
| 209 | self.args = userOptionsGlobal + userOptionsLocal |
| 210 | |
| 211 | def run(self): |
| 212 | try: |
nothing calls this directly
no test coverage detected