1
0
forked from VimPlug/jedi

Trying to get the NameFinder to use only NameParts.

This commit is contained in:
Dave Halter
2014-09-10 16:20:30 +02:00
parent 43cf1d451f
commit 657a2c7d4f
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -339,7 +339,7 @@ class Evaluator(object):
for typ in self.eval_call(call):
for param in typ.params:
if unicode(param.get_name()) == unicode(named_param_name):
param_names.append(param.get_name())
param_names.append(param.get_name().names[-1])
return param_names
return [call_path[0]]