comparison src/vim9compile.c @ 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 f2bfee4ac356
children 48feb3dd0d25
comparison
equal deleted inserted replaced
22733:e4eaa35280c9 22734:02b782e80ee4
1685 { 1685 {
1686 int varargs = (type->tt_flags & TTFLAG_VARARGS) ? 1 : 0; 1686 int varargs = (type->tt_flags & TTFLAG_VARARGS) ? 1 : 0;
1687 1687
1688 if (argcount < type->tt_min_argcount - varargs) 1688 if (argcount < type->tt_min_argcount - varargs)
1689 { 1689 {
1690 semsg(_(e_toofewarg), "[reference]"); 1690 semsg(_(e_toofewarg), name);
1691 return FAIL; 1691 return FAIL;
1692 } 1692 }
1693 if (!varargs && argcount > type->tt_argcount) 1693 if (!varargs && argcount > type->tt_argcount)
1694 { 1694 {
1695 semsg(_(e_toomanyarg), "[reference]"); 1695 semsg(_(e_toomanyarg), name);
1696 return FAIL; 1696 return FAIL;
1697 } 1697 }
1698 } 1698 }
1699 ret_type = type->tt_member; 1699 ret_type = type->tt_member;
1700 } 1700 }