forked from aniani/vim
patch 8.2.2741: Vim9: Partial call does not check right arguments
Problem: Vim9: Partial call does not check right arguments.
Solution: Adjust the offset for whether the partial is before or after the
arguments. (closes #8091)
This commit is contained in:
@@ -796,6 +796,8 @@ def Test_call_lambda_args()
|
||||
assert_equal('anything', Callback())
|
||||
assert_equal('anything', Callback(1))
|
||||
assert_equal('anything', Callback('a', 2))
|
||||
|
||||
assert_equal('xyz', ((a: string): string => a)('xyz'))
|
||||
END
|
||||
CheckDefAndScriptSuccess(lines)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user