Problem: Failure after trinary expression fails.
Solution: Restore eval_flags. (Yasuhiro Matsumoto, closes #6776)
evalarg_used->eval_flags = result ? orig_flags
: orig_flags & ~EVAL_EVALUATE;
if (eval1(arg, rettv, evalarg_used) == FAIL)
+ {
+ evalarg_used->eval_flags = orig_flags;
return FAIL;
+ }
/*
* Check for the ":".
emsg(_(e_missing_colon));
if (evaluate && result)
clear_tv(rettv);
+ evalarg_used->eval_flags = orig_flags;
return FAIL;
}
if (getnext)
{
error_white_both(p, 1);
clear_tv(rettv);
+ evalarg_used->eval_flags = orig_flags;
return FAIL;
}
*arg = p;
{
error_white_both(p, 1);
clear_tv(rettv);
+ evalarg_used->eval_flags = orig_flags;
return FAIL;
}
*arg = skipwhite_and_linebreak(*arg + 1, evalarg_used);
{
if (evaluate && result)
clear_tv(rettv);
+ evalarg_used->eval_flags = orig_flags;
return FAIL;
}
if (evaluate && !result)
let var = v:true ? 1 :2
END
CheckScriptFailure(lines, 'E1004:', 2)
+
+ # check after failure eval_flags is reset
+ lines =<< trim END
+ vim9script
+ try
+ call eval('0 ? 1: 2')
+ catch
+ endtry
+ assert_equal(v:true, eval(string(v:true)))
+ END
+ CheckScriptSuccess(lines)
+
+ lines =<< trim END
+ vim9script
+ try
+ call eval('0 ? 1 :2')
+ catch
+ endtry
+ assert_equal(v:true, eval(string(v:true)))
+ END
+ CheckScriptSuccess(lines)
enddef
func Test_expr1_fails()
call StopVimInTerminal(buf)
endfunc
+" Test for issue6776 {{{1
+func Test_trinary_expression()
+ try
+ call eval('0 ? 0')
+ catch
+ endtry
+ " previous failure should not cause next expression to fail
+ call assert_equal(v:false, eval(string(v:false)))
+
+ try
+ call eval('0 ? "burp')
+ catch
+ endtry
+ " previous failure should not cause next expression to fail
+ call assert_equal(v:false, eval(string(v:false)))
+
+ try
+ call eval('1 ? 0 : "burp')
+ catch
+ endtry
+ " previous failure should not cause next expression to fail
+ call assert_equal(v:false, eval(string(v:false)))
+endfunction
+
"-------------------------------------------------------------------------------
" Modelines {{{1
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1512,
/**/
1511,
/**/