mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.0469: Vim9: no error for missing ] after list
Problem: Vim9: no error for missing ] after list. Solution: Add error message. Add more tests.
This commit is contained in:
@@ -806,6 +806,12 @@ func Test_expr7_fails()
|
||||
call CheckDefFailure("let x = @", "E1002:")
|
||||
call CheckDefFailure("let x = @<", "E354:")
|
||||
|
||||
call CheckDefFailure("let x = [1, 2", "E697:")
|
||||
call CheckDefFailure("let x = [notfound]", "E1001:")
|
||||
|
||||
call CheckDefFailure("let x = { -> 123) }", "E451:")
|
||||
call CheckDefFailure("let x = 123->{x -> x + 5) }", "E451:")
|
||||
|
||||
call CheckDefFailure("let x = ¬exist", 'E113:')
|
||||
call CheckDefExecFailure("&grepprg = [343]", 'E1051:')
|
||||
|
||||
@@ -878,6 +884,7 @@ enddef
|
||||
|
||||
func Test_expr7_trailing_fails()
|
||||
call CheckDefFailureList(['let l = [2]', 'l->{l -> add(l, 8)}'], 'E107')
|
||||
call CheckDefFailureList(['let l = [2]', 'l->{l -> add(l, 8)} ()'], 'E274')
|
||||
endfunc
|
||||
|
||||
func Test_expr_fails()
|
||||
|
Reference in New Issue
Block a user