annotate src/testdir/test_method.vim @ 18478:94223687df0e

Added tag v8.1.2233 for changeset e93cab5d0f0f27fad7882f1f412927df055b090d
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Oct 2019 04:30:05 +0100
parents 6c3a8312486d
children 9f98957582d6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Tests for ->method()
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
3 func Test_list_method()
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 let l = [1, 2, 3]
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 call assert_equal([1, 2, 3, 4], [1, 2, 3]->add(4))
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
6 eval l->assert_equal(l)
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
7 eval l->assert_equal(l, 'wrong')
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
8 eval l->assert_notequal([3, 2, 1])
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
9 eval l->assert_notequal([3, 2, 1], 'wrong')
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 call assert_equal(l, l->copy())
17837
f71ee7b04f0b patch 8.1.1915: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents: 17763
diff changeset
11 call assert_equal(l, l->deepcopy())
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 call assert_equal(1, l->count(2))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 call assert_false(l->empty())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 call assert_true([]->empty())
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
15 call assert_equal(579, ['123', '+', '456']->join()->eval())
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 call assert_equal([1, 2, 3, 4, 5], [1, 2, 3]->extend([4, 5]))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 call assert_equal([1, 3], [1, 2, 3]->filter('v:val != 2'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 call assert_equal(2, l->get(1))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 call assert_equal(1, l->index(2))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 call assert_equal([0, 1, 2, 3], [1, 2, 3]->insert(0))
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
21 call assert_fails('eval l->items()', 'E715:')
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 call assert_equal('1 2 3', l->join())
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
23 call assert_fails('eval l->keys()', 'E715:')
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 call assert_equal(3, l->len())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 call assert_equal([2, 3, 4], [1, 2, 3]->map('v:val + 1'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 call assert_equal(3, l->max())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 call assert_equal(1, l->min())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 call assert_equal(2, [1, 2, 3]->remove(1))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 call assert_equal([1, 2, 3, 1, 2, 3], l->repeat(2))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 call assert_equal([3, 2, 1], [1, 2, 3]->reverse())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 call assert_equal([1, 2, 3, 4], [4, 2, 3, 1]->sort())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 call assert_equal('[1, 2, 3]', l->string())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 call assert_equal(v:t_list, l->type())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 call assert_equal([1, 2, 3], [1, 1, 2, 3, 3]->uniq())
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
35 call assert_fails('eval l->values()', 'E715:')
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 endfunc
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
38 func Test_dict_method()
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 let d = #{one: 1, two: 2, three: 3}
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 call assert_equal(d, d->copy())
17837
f71ee7b04f0b patch 8.1.1915: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents: 17763
diff changeset
42 call assert_equal(d, d->deepcopy())
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 call assert_equal(1, d->count(2))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 call assert_false(d->empty())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 call assert_true({}->empty())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 call assert_equal(#{one: 1, two: 2, three: 3, four: 4}, d->extend(#{four: 4}))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47 call assert_equal(#{one: 1, two: 2, three: 3}, d->filter('v:val != 4'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 call assert_equal(2, d->get('two'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 call assert_fails("let x = d->index(2)", 'E897:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 call assert_fails("let x = d->insert(0)", 'E899:')
17624
4c7097a980a5 patch 8.1.1809: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17620
diff changeset
51 call assert_true(d->has_key('two'))
17612
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 call assert_equal([['one', 1], ['two', 2], ['three', 3]], d->items())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53 call assert_fails("let x = d->join()", 'E714:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
54 call assert_equal(['one', 'two', 'three'], d->keys())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 call assert_equal(3, d->len())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
56 call assert_equal(#{one: 2, two: 3, three: 4}, d->map('v:val + 1'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
57 call assert_equal(#{one: 1, two: 2, three: 3}, d->map('v:val - 1'))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
58 call assert_equal(3, d->max())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
59 call assert_equal(1, d->min())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
60 call assert_equal(2, d->remove("two"))
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
61 let d.two = 2
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
62 call assert_fails('let x = d->repeat(2)', 'E731:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
63 call assert_fails('let x = d->reverse()', 'E899:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
64 call assert_fails('let x = d->sort()', 'E686:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
65 call assert_equal("{'one': 1, 'two': 2, 'three': 3}", d->string())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
66 call assert_equal(v:t_dict, d->type())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
67 call assert_fails('let x = d->uniq()', 'E686:')
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
68 call assert_equal([1, 2, 3], d->values())
e259d11e2900 patch 8.1.1803: all builtin functions are global
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
69 endfunc
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
70
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
71 func Test_string_method()
17676
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
72 eval '1 2 3'->split()->assert_equal(['1', '2', '3'])
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
73 eval '1 2 3'->split()->map({i, v -> str2nr(v)})->assert_equal([1, 2, 3])
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
74 eval 'ABC'->str2list()->assert_equal([65, 66, 67])
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
75 eval 'ABC'->strlen()->assert_equal(3)
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
76 eval "a\rb\ec"->strtrans()->assert_equal('a^Mb^[c')
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
77 eval "aあb"->strwidth()->assert_equal(4)
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
78 eval 'abc'->substitute('b', 'x', '')->assert_equal('axc')
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
79
14ac8c31e598 patch 8.1.1835: cannot use printf() as a method
Bram Moolenaar <Bram@vim.org>
parents: 17674
diff changeset
80 eval 'abc'->printf('the %s arg')->assert_equal('the abc arg')
17624
4c7097a980a5 patch 8.1.1809: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17620
diff changeset
81 endfunc
4c7097a980a5 patch 8.1.1809: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17620
diff changeset
82
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
83 func Test_method_append()
17620
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
84 new
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
85 eval ['one', 'two', 'three']->append(1)
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
86 call assert_equal(['', 'one', 'two', 'three'], getline(1, '$'))
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
87
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
88 %del
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
89 let bnr = bufnr('')
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
90 wincmd w
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
91 eval ['one', 'two', 'three']->appendbufline(bnr, 1)
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
92 call assert_equal(['', 'one', 'two', 'three'], getbufline(bnr, 1, '$'))
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
93
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
94 exe 'bwipe! ' .. bnr
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17612
diff changeset
95 endfunc
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
96
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
97 func Test_method_funcref()
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
98 func Concat(one, two, three)
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
99 return a:one .. a:two .. a:three
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
100 endfunc
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
101 let FuncRef = function('Concat')
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
102 eval 'foo'->FuncRef('bar', 'tail')->assert_equal('foobartail')
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
103
17648
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
104 " not enough arguments
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
105 call assert_fails("eval 'foo'->FuncRef('bar')", 'E119:')
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
106 " too many arguments
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
107 call assert_fails("eval 'foo'->FuncRef('bar', 'tail', 'four')", 'E118:')
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
108
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
109 let Partial = function('Concat', ['two'])
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
110 eval 'one'->Partial('three')->assert_equal('onetwothree')
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
111
17648
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
112 " not enough arguments
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
113 call assert_fails("eval 'one'->Partial()", 'E119:')
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
114 " too many arguments
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
115 call assert_fails("eval 'one'->Partial('three', 'four')", 'E118:')
511a03fcdc78 patch 8.1.1821: no test for wrong number of method arguments
Bram Moolenaar <Bram@vim.org>
parents: 17646
diff changeset
116
17646
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
117 delfunc Concat
e5397617d6ca patch 8.1.1820: using expr->FuncRef() does not work
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
118 endfunc
17661
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
119
17763
117c7795a979 patch 8.1.1878: negative float before method not parsed correctly
Bram Moolenaar <Bram@vim.org>
parents: 17732
diff changeset
120 func Test_method_float()
117c7795a979 patch 8.1.1878: negative float before method not parsed correctly
Bram Moolenaar <Bram@vim.org>
parents: 17732
diff changeset
121 eval 1.234->string()->assert_equal('1.234')
117c7795a979 patch 8.1.1878: negative float before method not parsed correctly
Bram Moolenaar <Bram@vim.org>
parents: 17732
diff changeset
122 eval -1.234->string()->assert_equal('-1.234')
117c7795a979 patch 8.1.1878: negative float before method not parsed correctly
Bram Moolenaar <Bram@vim.org>
parents: 17732
diff changeset
123 endfunc
117c7795a979 patch 8.1.1878: negative float before method not parsed correctly
Bram Moolenaar <Bram@vim.org>
parents: 17732
diff changeset
124
17661
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
125 func Test_method_syntax()
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
126 eval [1, 2, 3] ->sort( )
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
127 eval [1, 2, 3]
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
128 \ ->sort(
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
129 \ )
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
130 call assert_fails('eval [1, 2, 3]-> sort()', 'E260:')
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
131 call assert_fails('eval [1, 2, 3]->sort ()', 'E274:')
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
132 call assert_fails('eval [1, 2, 3]-> sort ()', 'E260:')
da7890e3359b patch 8.1.1828: not strict enough checking syntax of method invocation
Bram Moolenaar <Bram@vim.org>
parents: 17648
diff changeset
133 endfunc
17674
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
134
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
135 func Test_method_lambda()
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
136 eval "text"->{x -> x .. " extended"}()->assert_equal('text extended')
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
137 eval "text"->{x, y -> x .. " extended " .. y}('more')->assert_equal('text extended more')
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
138
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
139 call assert_fails('eval "text"->{x -> x .. " extended"} ()', 'E274:')
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
140
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
141 " todo: lambda accepts more arguments than it consumes
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
142 " call assert_fails('eval "text"->{x -> x .. " extended"}("more")', 'E99:')
18225
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 17837
diff changeset
143
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 17837
diff changeset
144 let l = [1, 2, 3]
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 17837
diff changeset
145 eval l->{x -> x}()
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 17837
diff changeset
146 call assert_equal(1, test_refcount(l))
17674
06c3e15ad84d patch 8.1.1834: cannot use a lambda as a method
Bram Moolenaar <Bram@vim.org>
parents: 17661
diff changeset
147 endfunc
17732
1726c2db81bf patch 8.1.1863: confusing error when using a builtin function as method
Bram Moolenaar <Bram@vim.org>
parents: 17676
diff changeset
148
1726c2db81bf patch 8.1.1863: confusing error when using a builtin function as method
Bram Moolenaar <Bram@vim.org>
parents: 17676
diff changeset
149 func Test_method_not_supported()
1726c2db81bf patch 8.1.1863: confusing error when using a builtin function as method
Bram Moolenaar <Bram@vim.org>
parents: 17676
diff changeset
150 call assert_fails('eval 123->changenr()', 'E276:')
1726c2db81bf patch 8.1.1863: confusing error when using a builtin function as method
Bram Moolenaar <Bram@vim.org>
parents: 17676
diff changeset
151 endfunc