comparison src/testdir/vim9.vim @ 21859:3e5d0832a2e7 v8.2.1479

patch 8.2.1479: Vim9: error for list index uses wrong line number Commit: https://github.com/vim/vim/commit/1d634542cf5ebcd1d5d83bd124b3e1d5e7c96c58 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 18 13:41:50 2020 +0200 patch 8.2.1479: Vim9: error for list index uses wrong line number Problem: Vim9: error for list index uses wrong line number. Solution: Set source line number. (closes https://github.com/vim/vim/issues/6724) Add a way to assert the line number of the error with assert_fails().
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Aug 2020 13:45:04 +0200
parents 1bb5adfe5966
children 809b1e7fbd72
comparison
equal deleted inserted replaced
21858:10d05fa7d7a9 21859:3e5d0832a2e7
7 call Func() 7 call Func()
8 call delete('Xdef') 8 call delete('Xdef')
9 endfunc 9 endfunc
10 10
11 " Check that "lines" inside ":def" results in an "error" message. 11 " Check that "lines" inside ":def" results in an "error" message.
12 func CheckDefFailure(lines, error) 12 " If "lnum" is given check that the error is reported for this line.
13 func CheckDefFailure(lines, error, lnum = -1)
13 call writefile(['def Func()'] + a:lines + ['enddef', 'defcompile'], 'Xdef') 14 call writefile(['def Func()'] + a:lines + ['enddef', 'defcompile'], 'Xdef')
14 call assert_fails('so Xdef', a:error, a:lines) 15 call assert_fails('so Xdef', a:error, a:lines, a:lnum)
15 call delete('Xdef') 16 call delete('Xdef')
16 endfunc 17 endfunc
17 18
18 " Check that "lines" inside ":def" results in an "error" message when executed. 19 " Check that "lines" inside ":def" results in an "error" message when executed.
19 func CheckDefExecFailure(lines, error) 20 " If "lnum" is given check that the error is reported for this line.
21 func CheckDefExecFailure(lines, error, lnum = -1)
20 call writefile(['def Func()'] + a:lines + ['enddef'], 'Xdef') 22 call writefile(['def Func()'] + a:lines + ['enddef'], 'Xdef')
21 so Xdef 23 so Xdef
22 call assert_fails('call Func()', a:error, a:lines) 24 call assert_fails('call Func()', a:error, a:lines, a:lnum)
23 call delete('Xdef') 25 call delete('Xdef')
24 endfunc 26 endfunc
25 27
26 def CheckScriptFailure(lines: list<string>, error: string) 28 def CheckScriptFailure(lines: list<string>, error: string)
27 writefile(lines, 'Xdef') 29 writefile(lines, 'Xdef')