1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:00:03 +08:00
SpaceVim/bundle/jedi-vim/pythonx/jedi/test/completion/thirdparty/jedi_.py
2022-10-23 15:41:52 +08:00

53 lines
1.5 KiB
Python
Vendored

from jedi import functions, inference, parsing
el = functions.complete()[0]
#? ['description']
el.description
#? str()
el.description
scopes, path, dot, like = \
api._prepare_goto(source, row, column, path, True)
# has problems with that (sometimes) very deep nesting.
#? set()
el = scopes
# get_names_for_scope is also recursion stuff
#? tuple()
el = list(inference.get_names_for_scope())[0]
#? int() parsing.Module()
el = list(inference.get_names_for_scope(1))[0][0]
#? parsing.Module()
el = list(inference.get_names_for_scope())[0][0]
#? list()
el = list(inference.get_names_for_scope(1))[0][1]
#? list()
el = list(inference.get_names_for_scope())[0][1]
#? list()
parsing.Scope((0,0)).get_set_vars()
#? parsing.Import() parsing.Name()
parsing.Scope((0,0)).get_set_vars()[0]
# TODO access parent is not possible, because that is not set in the class
## parsing.Class()
parsing.Scope((0,0)).get_set_vars()[0].parent
#? parsing.Import() parsing.Name()
el = list(inference.get_names_for_scope())[0][1][0]
#? inference.Array() inference.Class() inference.Function() inference.Instance()
list(inference.follow_call())[0]
# With the right recursion settings, this should be possible (and maybe more):
# Array Class Function Generator Instance Module
# However, this was produced with the recursion settings 10/350/10000, and
# lasted 18.5 seconds. So we just have to be content with the results.
#? inference.Class() inference.Function()
inference.get_scopes_for_name()[0]