comparison src/testdir/test_vim9_script.vim @ 25149:18b31f0a4bb5 v8.2.3111

patch 8.2.3111: Vim9: confusing error with extra whitespace before colon Commit: https://github.com/vim/vim/commit/404557e6a60389d09bbf91dd0cf3bae11bd623b9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 5 21:41:48 2021 +0200 patch 8.2.3111: Vim9: confusing error with extra whitespace before colon Problem: Vim9: confusing error with extra whitespace before colon. Solution: Check for colon after white space. (closes https://github.com/vim/vim/issues/8513)
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Jul 2021 21:45:04 +0200
parents 075790758d11
children 610e15e8778d
comparison
equal deleted inserted replaced
25148:004577226b10 25149:18b31f0a4bb5
2564 lines =<< trim END 2564 lines =<< trim END
2565 for nr: number in ['foo'] 2565 for nr: number in ['foo']
2566 endfor 2566 endfor
2567 END 2567 END
2568 CheckDefAndScriptFailure(lines, 'E1012: Type mismatch; expected number but got string', 1) 2568 CheckDefAndScriptFailure(lines, 'E1012: Type mismatch; expected number but got string', 1)
2569
2570 lines =<< trim END
2571 for n : number in [1, 2]
2572 echo n
2573 endfor
2574 END
2575 CheckDefAndScriptFailure(lines, 'E1059:', 1)
2569 enddef 2576 enddef
2570 2577
2571 def Test_for_loop_script_var() 2578 def Test_for_loop_script_var()
2572 # cannot use s:var in a :def function 2579 # cannot use s:var in a :def function
2573 CheckDefFailure(['for s:var in range(3)', 'echo 3'], 'E1101:') 2580 CheckDefFailure(['for s:var in range(3)', 'echo 3'], 'E1101:')