0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.1686: Vim9: "const!" not sufficiently tested

Problem:    Vim9: "const!" not sufficiently tested.
Solution:   Add a few more test cases.  Fix type checking.
This commit is contained in:
Bram Moolenaar
2020-09-14 22:28:30 +02:00
parent 0b4c66c67a
commit 71abe48289
3 changed files with 23 additions and 2 deletions

View File

@@ -831,6 +831,24 @@ def Test_const()
list->assert_equal([4, 2, 3])
const! other = [5, 6, 7]
other->assert_equal([5, 6, 7])
let varlist = [7, 8]
const! constlist = [1, varlist, 3]
varlist[0] = 77
# TODO: does not work yet
# constlist[1][1] = 88
let cl = constlist[1]
cl[1] = 88
constlist->assert_equal([1, [77, 88], 3])
let vardict = #{five: 5, six: 6}
const! constdict = #{one: 1, two: vardict, three: 3}
vardict['five'] = 55
# TODO: does not work yet
# constdict['two']['six'] = 66
let cd = constdict['two']
cd['six'] = 66
constdict->assert_equal(#{one: 1, two: #{five: 55, six: 66}, three: 3})
END
CheckDefAndScriptSuccess(lines)
enddef