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:
zeertzjq
2023-05-05 06:22:18 +08:00
committed by GitHub
parent b16729f816
commit f6299e9d6e
3 changed files with 56 additions and 5 deletions

View File

@@ -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()