Problem: Syntax error when dict has '>' key.
Solution: Check for endchar. (Ken Takata)
call assert_fails('echo {a, a -> a + a}(1, 2)', 'E15:')
call assert_fails('echo {a, b -> a + b)}(1, 2)', 'E15:')
endfunc
+
+func Test_not_lamda()
+ let x = {'>' : 'foo'}
+ call assert_equal('foo', x['>'])
+endfunc
hash_init(&func_hashtab);
}
-/* Get function arguments. */
+/*
+ * Get function arguments.
+ */
static int
get_function_args(
char_u **argp,
break;
}
}
- ++p; /* skip the ')' */
+ if (*p != endchar)
+ goto err_ret;
+ ++p; /* skip "endchar" */
*argp = p;
return OK;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2076,
/**/
2075,
/**/