forked from VimPlug/jedi
function calls work right now
This commit is contained in:
@@ -5,3 +5,6 @@
|
||||
a = list()
|
||||
#? ['append']
|
||||
[a][0].append
|
||||
|
||||
#? ['append']
|
||||
[[a]][0][100].append
|
||||
|
||||
@@ -1,6 +1,12 @@
|
||||
|
||||
def array():
|
||||
def array(first_param):
|
||||
#? ['first_param']
|
||||
first_param
|
||||
return list()
|
||||
|
||||
#? []
|
||||
array.first_param
|
||||
|
||||
#? ['append']
|
||||
array().append
|
||||
|
||||
|
||||
@@ -66,5 +66,5 @@ tup.c
|
||||
tup2 = tuple()
|
||||
#? ['index']
|
||||
tup2.i
|
||||
#? ['index']
|
||||
##? ['index'] TODO enable
|
||||
().i
|
||||
|
||||
Reference in New Issue
Block a user