comparison src/testdir/test_vim9_expr.vim @ 25258:205a0126ac2d v8.2.3165

patch 8.2.3165: Vim9: in a || expression the error line number may be wrong Commit: https://github.com/vim/vim/commit/9e60e899ee546a8a35c4cbe0319971719c1839e9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 15 15:40:58 2021 +0200 patch 8.2.3165: Vim9: in a || expression the error line number may be wrong Problem: Vim9: in a || expression the error line number may be wrong. Solution: Save and restore the line number when checking the type. (closes #8569)
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Jul 2021 15:45:03 +0200
parents acda780ffc3e
children 1d6ff96306fc
comparison
equal deleted inserted replaced
25257:2ba11a69cd63 25258:205a0126ac2d
399 echo false 399 echo false
400 ||true 400 ||true
401 # comment 401 # comment
402 END 402 END
403 CheckScriptFailure(lines, 'E1004: White space required before and after ''||'' at "||true"', 3) 403 CheckScriptFailure(lines, 'E1004: White space required before and after ''||'' at "||true"', 3)
404
405 lines =<< trim END
406 var x = false
407 || false
408 || a.b
409 END
410 CheckDefFailure(lines, 'E1001:', 3)
404 enddef 411 enddef
405 412
406 " test && 413 " test &&
407 def Test_expr3() 414 def Test_expr3()
408 var lines =<< trim END 415 var lines =<< trim END