Problem: Vim9: method name with digit not accepted.
Solution: Use eval_isnamec() instead of eval_isnamec1(). (closes #6613)
return arg
enddef
-def s:EchoArg(arg: any): string
+def s:Echo4Arg(arg: any): string
return arg
enddef
def Test_expr7_call()
assert_equal('yes', 'yes'->Echo())
assert_equal('yes', 'yes'
- ->s:EchoArg())
+ ->s:Echo4Arg())
assert_equal(1, !range(5)->empty())
assert_equal([0, 1, 2], --3->range())
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1375,
/**/
1374,
/**/
}
if (ASCII_ISALPHA(*p) && p[1] == ':')
p += 2;
- for ( ; eval_isnamec1(*p); ++p)
+ for ( ; eval_isnamec(*p); ++p)
;
if (*p != '(')
{