comparison src/testdir/test_partial.vim @ 8575:b5209a4e5baf v7.4.1577

commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 15 19:33:34 2016 +0100 patch 7.4.1577 Problem: Cannot pass "dict.Myfunc" around as a partial. Solution: Create a partial when expected.
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Mar 2016 19:45:06 +0100
parents 24db3583c496
children fd454847836d
comparison
equal deleted inserted replaced
8574:a192274c1ac6 8575:b5209a4e5baf
48 48
49 let Cb = function('MyDictFunc', dict) 49 let Cb = function('MyDictFunc', dict)
50 call assert_equal("hello/xxx/yyy", Cb("xxx", "yyy")) 50 call assert_equal("hello/xxx/yyy", Cb("xxx", "yyy"))
51 call assert_fails('Cb("fff")', 'E492:') 51 call assert_fails('Cb("fff")', 'E492:')
52 endfunc 52 endfunc
53
54 func Test_partial_implicit()
55 let dict = {'name': 'foo'}
56 func dict.MyFunc(arg) dict
57 return self.name . '/' . a:arg
58 endfunc
59
60 call assert_equal('foo/bar', dict.MyFunc('bar'))
61
62 call assert_fails('let func = dict.MyFunc', 'E704:')
63 let Func = dict.MyFunc
64 call assert_equal('foo/aaa', Func('aaa'))
65
66 let Func = function(dict.MyFunc, ['bbb'])
67 call assert_equal('foo/bbb', Func())
68
69 call assert_fails('call function(dict.MyFunc, ["bbb"], dict)', 'E924:')
70 endfunc