MCPcopy
hub / github.com/xavierd/clang_complete / __init__

Method __init__

plugin/libclang.py:200–209  ·  view source on GitHub ↗
(self, line, column, currentFile, fileName)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

splitOptionsFunction · 0.85

Tested by

no test coverage detected