Problem: When a builtin function gives an error processing continues.
Solution: In Vim9 script return FAIL in get_func_tv().
CheckDefAndScriptFailure(lines, "E1202: No white space allowed after '++': ++ nr")
enddef
+def Test_abort_after_error()
+ # should abort after strpart() fails, not give another type error
+ var lines =<< trim END
+ vim9script
+ var x: string
+ x = strpart(1, 2)
+ END
+ writefile(lines, 'Xtestscript')
+ var expected = 'E1174: String required for argument 1'
+ assert_fails('so Xtestscript', [expected, expected], 3)
+
+ delete('Xtestscript')
+enddef
+
+
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
if (ret == OK)
{
- int i = 0;
+ int i = 0;
+ int did_emsg_before = did_emsg;
if (get_vim_var_nr(VV_TESTING))
{
}
ret = call_func(name, len, rettv, argcount, argvars, funcexe);
+ if (in_vim9script() && did_emsg > did_emsg_before)
+ // An error in a builtin function does not return FAIL, but we do
+ // want to abort further processing if an error was given.
+ ret = FAIL;
funcargs.ga_len -= i;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 3237,
/**/
3236,
/**/