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

patch 8.2.4682: Vim9: can use :unlockvar for const variable

Problem:    Vim9: can use :unlockvar for const variable. (Ernie Rael)
Solution:   Check whether the variable is a const.
This commit is contained in:
Bram Moolenaar
2022-04-04 14:58:06 +01:00
parent 15f74fab65
commit 7a411a306f
8 changed files with 62 additions and 23 deletions

View File

@@ -1650,6 +1650,23 @@ def Test_lockvar()
LockIt()
END
v9.CheckScriptFailure(lines, 'E1246', 1)
lines =<< trim END
vim9script
const name = 'john'
unlockvar name
END
v9.CheckScriptFailure(lines, 'E46', 3)
lines =<< trim END
vim9script
const name = 'john'
def UnLockIt()
unlockvar name
enddef
UnLockIt()
END
v9.CheckScriptFailure(lines, 'E46', 1)
enddef
def Test_substitute_expr()