]> granicus.if.org Git - vim/commitdiff
patch 8.2.1433: Vim9: cannot mingle comments in multi-line lambda v8.2.1433
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Aug 2020 17:15:33 +0000 (19:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Aug 2020 17:15:33 +0000 (19:15 +0200)
Problem:    Vim9: cannot mingle comments in multi-line lambda.
Solution:   Skip over NULL lines. (closes #6694)

src/testdir/test_vim9_expr.vim
src/version.c
src/vim9compile.c

index c87f2b221327782f58122f42943f6b06cc33fe61..d6313d363fb1898099be2b7873d8c87745813ecb 100644 (file)
@@ -1433,6 +1433,16 @@ def Test_expr7_list_vim9script()
   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())
@@ -1466,6 +1476,11 @@ def Test_expr7_lambda()
   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
 
index 5c942d7424b2c1c836519811c389dcd9352bc72e..e182ea6aa945a56849611f39fbdad52fafa864d7 100644 (file)
@@ -754,6 +754,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1433,
 /**/
     1432,
 /**/
index 8b58d968898a26d1bfed7967b1c669f193f65bdd..87bb0e2c70619ca79db9b5f9738877c4676d1c02 100644 (file)
@@ -1729,11 +1729,13 @@ peek_next_line_from_context(cctx_T *cctx)
        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;
 }