mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.2816: Vim9: comment below expression in lambda causes problems
Problem: Vim9: comment below expression in lambda causes problems. Solution: Use a single space for empty and comment lines. (closes #8156)
This commit is contained in:
17
src/eval.c
17
src/eval.c
@@ -393,7 +393,7 @@ skip_expr(char_u **pp, evalarg_T *evalarg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Skip over an expression at "*pp".
|
* Skip over an expression at "*arg".
|
||||||
* If in Vim9 script and line breaks are encountered, the lines are
|
* If in Vim9 script and line breaks are encountered, the lines are
|
||||||
* concatenated. "evalarg->eval_tofree" will be set accordingly.
|
* concatenated. "evalarg->eval_tofree" will be set accordingly.
|
||||||
* "arg" is advanced to just after the expression.
|
* "arg" is advanced to just after the expression.
|
||||||
@@ -451,7 +451,7 @@ skip_expr_concatenate(
|
|||||||
|
|
||||||
// Line breaks encountered, concatenate all the lines.
|
// Line breaks encountered, concatenate all the lines.
|
||||||
*((char_u **)gap->ga_data) = *start;
|
*((char_u **)gap->ga_data) = *start;
|
||||||
p = ga_concat_strings(gap, "");
|
p = ga_concat_strings(gap, " ");
|
||||||
|
|
||||||
// free the lines only when using getsourceline()
|
// free the lines only when using getsourceline()
|
||||||
if (evalarg->eval_cookie != NULL)
|
if (evalarg->eval_cookie != NULL)
|
||||||
@@ -2059,6 +2059,7 @@ eval_func(
|
|||||||
/*
|
/*
|
||||||
* Get the next line source line without advancing. But do skip over comment
|
* Get the next line source line without advancing. But do skip over comment
|
||||||
* lines.
|
* lines.
|
||||||
|
* Only called for Vim9 script.
|
||||||
*/
|
*/
|
||||||
static char_u *
|
static char_u *
|
||||||
getline_peek_skip_comments(evalarg_T *evalarg)
|
getline_peek_skip_comments(evalarg_T *evalarg)
|
||||||
@@ -2116,6 +2117,7 @@ eval_next_non_blank(char_u *arg, evalarg_T *evalarg, int *getnext)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* To be called after eval_next_non_blank() sets "getnext" to TRUE.
|
* To be called after eval_next_non_blank() sets "getnext" to TRUE.
|
||||||
|
* Only called for Vim9 script.
|
||||||
*/
|
*/
|
||||||
char_u *
|
char_u *
|
||||||
eval_next_line(evalarg_T *evalarg)
|
eval_next_line(evalarg_T *evalarg)
|
||||||
@@ -2131,7 +2133,16 @@ eval_next_line(evalarg_T *evalarg)
|
|||||||
++evalarg->eval_break_count;
|
++evalarg->eval_break_count;
|
||||||
if (gap->ga_itemsize > 0 && ga_grow(gap, 1) == OK)
|
if (gap->ga_itemsize > 0 && ga_grow(gap, 1) == OK)
|
||||||
{
|
{
|
||||||
// Going to concatenate the lines after parsing.
|
char_u *p = skipwhite(line);
|
||||||
|
|
||||||
|
// Going to concatenate the lines after parsing. For an empty or
|
||||||
|
// comment line use an empty string.
|
||||||
|
if (*p == NUL || vim9_comment_start(p))
|
||||||
|
{
|
||||||
|
vim_free(line);
|
||||||
|
line = vim_strsave((char_u *)"");
|
||||||
|
}
|
||||||
|
|
||||||
((char_u **)gap->ga_data)[gap->ga_len] = line;
|
((char_u **)gap->ga_data)[gap->ga_len] = line;
|
||||||
++gap->ga_len;
|
++gap->ga_len;
|
||||||
}
|
}
|
||||||
|
@@ -1887,6 +1887,7 @@ enddef
|
|||||||
def Test_expr7_lambda()
|
def Test_expr7_lambda()
|
||||||
var lines =<< trim END
|
var lines =<< trim END
|
||||||
var La = () => 'result'
|
var La = () => 'result'
|
||||||
|
# comment
|
||||||
assert_equal('result', La())
|
assert_equal('result', La())
|
||||||
assert_equal([1, 3, 5], [1, 2, 3]->map((key, val) => key + val))
|
assert_equal([1, 3, 5], [1, 2, 3]->map((key, val) => key + val))
|
||||||
|
|
||||||
@@ -1897,6 +1898,12 @@ def Test_expr7_lambda()
|
|||||||
)
|
)
|
||||||
assert_equal([{}, {111: 111}, {}], dll)
|
assert_equal([{}, {111: 111}, {}], dll)
|
||||||
|
|
||||||
|
# comment halfway an expression
|
||||||
|
var Ref = () => 4
|
||||||
|
# comment
|
||||||
|
+ 6
|
||||||
|
assert_equal(10, Ref())
|
||||||
|
|
||||||
ll = range(3)
|
ll = range(3)
|
||||||
map(ll, (k, v) => v == 8 || v
|
map(ll, (k, v) => v == 8 || v
|
||||||
== 9
|
== 9
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2816,
|
||||||
/**/
|
/**/
|
||||||
2815,
|
2815,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user