Problem: Vim9: invalid error for missing white space after function.
Solution: Do not skip over white space. (closes #6679)
let x = 1
enddef
-def Test_expr4_vimscript()
+def Test_expr4_vim9script()
# check line continuation
let lines =<< trim END
vim9script
echo 2!= 3
END
CheckScriptFailure(lines, 'E1004:')
+
+ lines =<< trim END
+ vim9script
+ echo len('xxx') == 3
+ END
+ CheckScriptSuccess(lines)
enddef
func Test_expr4_fails()
while (--argcount >= 0)
clear_tv(&argvars[argcount]);
- *arg = skipwhite(argp);
+ if (in_vim9script())
+ *arg = argp;
+ else
+ *arg = skipwhite(argp);
return ret;
}
if (!failed || eap->cstack->cs_trylevel > 0)
{
// Check for trailing illegal characters and a following command.
+ arg = skipwhite(arg);
if (!ends_excmd2(eap->arg, arg))
{
if (!failed)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1418,
/**/
1417,
/**/