mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 10:26:42 +10:00
vim-patch:8.2.3221: Vim9: argument types are not checked at compile time (#23480)
Problem: Vim9: argument types are not checked at compile time.
Solution: Add several more type checks. (Yegappan Lakshmanan, closes vim/vim#8632)
a764e73d4f
Cherry-pick test_assert.vim change from patch 8.2.3229.
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
This commit is contained in:
@@ -254,21 +254,21 @@ func Test_assert_fail_fails()
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E856: \"assert_fails()\" second argument", exp)
|
||||
call assert_match("E1222: String or List required for argument 2", exp)
|
||||
|
||||
try
|
||||
call assert_equal(1, assert_fails('xxx', 'E492', '', 'burp'))
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E1115: \"assert_fails()\" fourth argument must be a number", exp)
|
||||
call assert_match("E1210: Number required for argument 4", exp)
|
||||
|
||||
try
|
||||
call assert_equal(1, assert_fails('xxx', 'E492', '', 54, 123))
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E1116: \"assert_fails()\" fifth argument must be a string", exp)
|
||||
call assert_match("E1174: String required for argument 5", exp)
|
||||
endfunc
|
||||
|
||||
func Test_assert_fails_in_try_block()
|
||||
|
||||
Reference in New Issue
Block a user