forked from VimPlug/jedi
static analysis import tests
This commit is contained in:
@@ -588,14 +588,12 @@ class Script(object):
|
||||
def _analysis(self):
|
||||
statements = set(chain(*self._parser.module().used_names.values()))
|
||||
for stmt in statements:
|
||||
if stmt.start_pos[0] != 254:
|
||||
continue
|
||||
if isinstance(stmt, pr.Import):
|
||||
imports.strip_imports(self._evaluator, [stmt])
|
||||
else:
|
||||
self._evaluator.eval_statement(stmt)
|
||||
|
||||
analysis = self._evaluator.analysis
|
||||
analysis = [a for a in self._evaluator.analysis if self.path == a.path]
|
||||
return sorted(analysis, key=lambda x: x.line)
|
||||
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ CODES = {
|
||||
|
||||
class Error(object):
|
||||
def __init__(self, name, module_path, start_pos):
|
||||
self._module_path = module_path
|
||||
self.path = module_path
|
||||
self._start_pos = start_pos
|
||||
self.name = name
|
||||
|
||||
@@ -39,7 +39,7 @@ class Error(object):
|
||||
|
||||
def __repr__(self):
|
||||
return '<%s %s: %s@%s,%s' % (self.__class__.__name__,
|
||||
self.name, self._module_path,
|
||||
self.name, self.path,
|
||||
self._start_pos[0], self._start_pos[1])
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user