forked from VimPlug/jedi
Fix some test errors
This commit is contained in:
@@ -143,9 +143,10 @@ def evaluate_goto_definition(evaluator, context, leaf):
|
||||
if leaf.type == 'name':
|
||||
# In case of a name we can just use goto_definition which does all the
|
||||
# magic itself.
|
||||
name = TreeNameDefinition(context, leaf)
|
||||
if leaf.parent.type in ('trailer', 'error_node'):
|
||||
print(leaf.parent)
|
||||
if leaf.parent.type in ('trailer', 'error_node', 'dotted_name'):
|
||||
return evaluator.goto_definitions(context, leaf)
|
||||
name = TreeNameDefinition(context, leaf)
|
||||
return ContextSet.from_sets(
|
||||
name.infer() for name in convert_names([name], prefer_stubs=True)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user