1
0
forked from VimPlug/jedi

Start adding tests for goto_assignments on stubs

This commit is contained in:
Dave Halter
2019-04-10 20:41:05 +02:00
parent 31442ecb3b
commit 9f26c27b6d
5 changed files with 53 additions and 6 deletions

View File

@@ -136,6 +136,14 @@ class ModuleMixin(SubModuleDictMixin):
modules += new
return modules
def get_qualified_names(self):
"""
A module doesn't have a qualified name, but it's important to note that
it's reachable and not `None`. With this information we can add
qualified names on top for all context children.
"""
return []
class ModuleContext(ModuleMixin, TreeContext):
api_type = u'module'