CheckScriptFailure(lines, 'E1068:')
enddef
+def LambdaWithComments(): func
+ return {x ->
+ # some comment
+ x == 1
+ # some comment
+ ||
+ x == 2
+ }
+enddef
+
def Test_expr7_lambda()
let La = { -> 'result'}
assert_equal('result', La())
assert_equal([{'key': 12}], filter(dl,
{_, v -> has_key(v, 'key') ? v['key'] == 12 : 0}))
+ assert_equal(false, LambdaWithComments()(0))
+ assert_equal(true, LambdaWithComments()(1))
+ assert_equal(true, LambdaWithComments()(2))
+ assert_equal(false, LambdaWithComments()(3))
+
call CheckDefFailure(["filter([1, 2], {k,v -> 1})"], 'E1069:')
enddef
char_u *line = ((char_u **)cctx->ctx_ufunc->uf_lines.ga_data)[lnum];
char_u *p;
- if (line == NULL)
- break;
- p = skipwhite(line);
- if (*p != NUL && !vim9_comment_start(p))
- return p;
+ // ignore NULLs inserted for continuation lines
+ if (line != NULL)
+ {
+ p = skipwhite(line);
+ if (*p != NUL && !vim9_comment_start(p))
+ return p;
+ }
}
return NULL;
}