1
0
forked from VimPlug/jedi

One more function test

This commit is contained in:
Dave Halter
2020-02-26 00:21:46 +01:00
parent 17892556f8
commit eef47e951e

View File

@@ -275,3 +275,28 @@ def x(v1):
y = a(v1, v2, v3)
return y
x
# -------------------------------------------------- with-range-func-3
def x(v1):
#? 2 text {'new_name': 'func', 'until_line': 6, 'until_column': 4}
#foo
v2 = 2
x = v1 * 2
y = 3
#bar
return x
x
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def func(v1):
#foo
v2 = 2
x = v1 * 2
return x
def x(v1):
#? 2 text {'new_name': 'func', 'until_line': 6, 'until_column': 4}
x = func(v1)
y = 3
#bar
return x
x