changeset 22734:02b782e80ee4 v8.2.1915

patch 8.2.1915: Vim9: error for wrong number of arguments is not useful Commit: https://github.com/vim/vim/commit/6cf7e3b026727818cd137e2b317b1f6d7c072703 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 28 14:31:16 2020 +0100 patch 8.2.1915: Vim9: error for wrong number of arguments is not useful Problem: Vim9: error for wrong number of arguments is not useful. Solution: Mention whatever we have for the name. (closes https://github.com/vim/vim/issues/7208)
author Bram Moolenaar <Bram@vim.org>
date Wed, 28 Oct 2020 14:45:04 +0100
parents e4eaa35280c9
children 6a0c4559c941
files src/testdir/test_vim9_func.vim src/version.c src/vim9compile.c
diffstat 3 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -322,6 +322,8 @@ def Test_call_wrong_args()
   CheckDefFailure(['bufnr(xxx)'], 'E1001:')
   CheckScriptFailure(['def Func(Ref: func(s: string))'], 'E475:')
 
+  CheckDefFailure(['echo {i -> 0}()'], 'E119: Not enough arguments for function: {i -> 0}()')
+
   var lines =<< trim END
     vim9script
     def Func(s: string)
@@ -1551,7 +1553,7 @@ def Test_restore_modifiers()
       set eventignore=
       autocmd QuickFixCmdPost * copen
       def AutocmdsDisabled()
-          eval 0
+        eval 0
       enddef
       func Func()
         noautocmd call s:AutocmdsDisabled()
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1915,
+/**/
     1914,
 /**/
     1913,
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -1687,12 +1687,12 @@ generate_PCALL(
 
 	    if (argcount < type->tt_min_argcount - varargs)
 	    {
-		semsg(_(e_toofewarg), "[reference]");
+		semsg(_(e_toofewarg), name);
 		return FAIL;
 	    }
 	    if (!varargs && argcount > type->tt_argcount)
 	    {
-		semsg(_(e_toomanyarg), "[reference]");
+		semsg(_(e_toomanyarg), name);
 		return FAIL;
 	    }
 	}