]> granicus.if.org Git - vim/commitdiff
patch 8.2.2483: Vim9: type error for misformed expression v8.2.2483
authorBram Moolenaar <Bram@vim.org>
Sun, 7 Feb 2021 15:33:35 +0000 (16:33 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 7 Feb 2021 15:33:35 +0000 (16:33 +0100)
Problem:    Vim9: type error for misformed expression.
Solution:   Check for end of command before checking type. (closes #7795)

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

index d25bb47aaa4188e634560c2fb1023a1f1e4e8232..72e12740adc940b1d97741e31812db70bb4ee0e0 100644 (file)
@@ -1743,6 +1743,21 @@ def Test_if_elseif_else_fails()
   CheckDefFailure(['endif'], 'E580:')
   CheckDefFailure(['if g:abool', 'elseif xxx'], 'E1001:')
   CheckDefFailure(['if true', 'echo 1'], 'E171:')
+
+  var lines =<< trim END
+      var s = ''
+      if s = ''
+      endif
+  END
+  CheckDefFailure(lines, 'E488:')
+
+  lines =<< trim END
+      var s = ''
+      if s == ''
+      elseif s = ''
+      endif
+  END
+  CheckDefFailure(lines, 'E488:')
 enddef
 
 let g:bool_true = v:true
@@ -2200,6 +2215,13 @@ def Test_while_loop_fails()
   CheckDefFailure(['break'], 'E587:')
   CheckDefFailure(['if true', 'break'], 'E587:')
   CheckDefFailure(['while 1', 'echo 3'], 'E170:')
+
+  var lines =<< trim END
+      var s = ''
+      while s = ''
+      endwhile
+  END
+  CheckDefFailure(lines, 'E488:')
 enddef
 
 def Test_interrupt_loop()
index 17ab64a912077ced68195ffc3c1976e0f293a52f..4c53107001730d43e7af646e3390d4c47ffeb0b4 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2483,
 /**/
     2482,
 /**/
index 3c24fdb06c4d33b3e4dda66d9f8f788733515ef4..7a220a851f726e18cfd31699d0e2fc33f797484a 100644 (file)
@@ -6701,6 +6701,11 @@ compile_if(char_u *arg, cctx_T *cctx)
        clear_ppconst(&ppconst);
        return NULL;
     }
+    if (!ends_excmd2(arg, skipwhite(p)))
+    {
+       semsg(_(e_trailing_arg), p);
+       return NULL;
+    }
     if (cctx->ctx_skip == SKIP_YES)
        clear_ppconst(&ppconst);
     else if (instr->ga_len == instr_count && ppconst.pp_used == 1)
@@ -6825,6 +6830,11 @@ compile_elseif(char_u *arg, cctx_T *cctx)
        return NULL;
     }
     cctx->ctx_skip = save_skip;
+    if (!ends_excmd2(arg, skipwhite(p)))
+    {
+       semsg(_(e_trailing_arg), p);
+       return NULL;
+    }
     if (scope->se_skip_save == SKIP_YES)
        clear_ppconst(&ppconst);
     else if (instr->ga_len == instr_count && ppconst.pp_used == 1)
@@ -7237,6 +7247,11 @@ compile_while(char_u *arg, cctx_T *cctx)
     // compile "expr"
     if (compile_expr0(&p, cctx) == FAIL)
        return NULL;
+    if (!ends_excmd2(arg, skipwhite(p)))
+    {
+       semsg(_(e_trailing_arg), p);
+       return NULL;
+    }
 
     if (bool_on_stack(cctx) == FAIL)
        return FAIL;