0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.2660: Vim9: no error for declaration with trailing text

Problem:    Vim9: no error for declaration with trailing text.
Solution:   Give an error. (closes #8014)
This commit is contained in:
Bram Moolenaar
2021-03-26 21:27:52 +01:00
parent c61cb8bfe1
commit ccc25aa285
3 changed files with 15 additions and 3 deletions

View File

@@ -1290,6 +1290,8 @@ def Test_var_declaration()
other = 1234
g:other_var = other
var xyz: string # comment
# type is inferred
var s:dict = {['a']: 222}
def GetDictVal(key: any)
@@ -1365,7 +1367,7 @@ def Test_var_declaration_fails()
vim9script
var 9var: string
END
CheckScriptFailure(lines, 'E475:')
CheckScriptFailure(lines, 'E488:')
CheckDefFailure(['var foo.bar = 2'], 'E1087:')
CheckDefFailure(['var foo[3] = 2'], 'E1087:')
@@ -1617,6 +1619,11 @@ def Test_expr_error_no_assign()
echo x
END
CheckScriptFailureList(lines, ['E1154:', 'E121:'])
lines =<< trim END
var x: string 'string'
END
CheckDefAndScriptFailure(lines, 'E488:')
enddef