0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 8.2.3859: Vim9: some code lines not tested

Problem:    Vim9: some code lines not tested.
Solution:   Add a few specific tests.
This commit is contained in:
Bram Moolenaar
2021-12-20 12:25:03 +00:00
parent 003312b1d2
commit a99fb23842
5 changed files with 16 additions and 8 deletions

View File

@@ -1392,6 +1392,10 @@ def Test_lockvar()
s:theList[1] = 44
assert_equal([1, 44, 3], s:theList)
if 0
lockvar whatever
endif
var d = {a: 1, b: 2}
d.a = 3
d.b = 4