diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-28 21:38:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-28 21:38:06 +0100 |
commit | ee619e5bc0992e818f2d9540b093b769b9c27651 (patch) | |
tree | b641bbb22f0db951821fd0b34ba8b4dfbd7bdf06 | |
parent | 7c003aa314337ce732e18c541fa93d71cafedf03 (diff) | |
download | vim-git-ee619e5bc0992e818f2d9540b093b769b9c27651.tar.gz |
patch 8.2.0469: Vim9: no error for missing ] after listv8.2.0469
Problem: Vim9: no error for missing ] after list.
Solution: Add error message. Add more tests.
-rw-r--r-- | src/globals.h | 1 | ||||
-rw-r--r-- | src/list.c | 2 | ||||
-rw-r--r-- | src/testdir/test_lambda.vim | 2 | ||||
-rw-r--r-- | src/testdir/test_vim9_expr.vim | 7 | ||||
-rw-r--r-- | src/userfunc.c | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
6 files changed, 15 insertions, 2 deletions
diff --git a/src/globals.h b/src/globals.h index f1538d622..290f07dd5 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1644,6 +1644,7 @@ EXTERN char e_func_deleted[] INIT(= N_("E933: Function was deleted: %s")); EXTERN char e_dictkey[] INIT(= N_("E716: Key not present in Dictionary: %s")); EXTERN char e_listreq[] INIT(= N_("E714: List required")); EXTERN char e_listblobreq[] INIT(= N_("E897: List or Blob required")); +EXTERN char e_list_end[] INIT(= N_("E697: Missing end of List ']': %s")); EXTERN char e_listdictarg[] INIT(= N_("E712: Argument of %s must be a List or Dictionary")); EXTERN char e_listdictblobarg[] INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob")); EXTERN char e_modulus[] INIT(= N_("E804: Cannot use '%' with Float")); diff --git a/src/list.c b/src/list.c index 518423b71..918626e16 100644 --- a/src/list.c +++ b/src/list.c @@ -1083,7 +1083,7 @@ get_list_tv(char_u **arg, typval_T *rettv, int evaluate, int do_error) if (**arg != ']') { if (do_error) - semsg(_("E697: Missing end of List ']': %s"), *arg); + semsg(_(e_list_end), *arg); failret: if (evaluate) list_free(l); diff --git a/src/testdir/test_lambda.vim b/src/testdir/test_lambda.vim index 7fdfb876e..bc3d5ace7 100644 --- a/src/testdir/test_lambda.vim +++ b/src/testdir/test_lambda.vim @@ -62,7 +62,7 @@ endfunc function Test_lambda_fails() call assert_equal(3, {a, b -> a + b}(1, 2)) call assert_fails('echo {a, a -> a + a}(1, 2)', 'E853:') - call assert_fails('echo {a, b -> a + b)}(1, 2)', 'E15:') + call assert_fails('echo {a, b -> a + b)}(1, 2)', 'E451:') echo assert_fails('echo 10->{a -> a + 2}', 'E107:') endfunc diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim index c9d50246d..93626d554 100644 --- a/src/testdir/test_vim9_expr.vim +++ b/src/testdir/test_vim9_expr.vim @@ -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() diff --git a/src/userfunc.c b/src/userfunc.c index 32b9fb5ad..05e5b7f56 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -350,7 +350,10 @@ get_lambda_tv(char_u **arg, typval_T *rettv, int evaluate) e = *arg; *arg = skipwhite(*arg); if (**arg != '}') + { + semsg(_("E451: Expected }: %s"), *arg); goto errret; + } ++*arg; if (evaluate) diff --git a/src/version.c b/src/version.c index a4ffae0ab..8bf06a13c 100644 --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 469, +/**/ 468, /**/ 467, |