mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -04:00
patch 8.2.2351: Vim9: error msg for "throw" in function called with "silent!"
Problem: Vim9: error message for "throw" in function that was called with "silent!". Solution: Do not throw the exception when not caught or displayed. (closes #7672)
This commit is contained in:
@@ -564,6 +564,19 @@ def Test_throw_skipped()
|
||||
endif
|
||||
enddef
|
||||
|
||||
def Test_nocatch_throw_silenced()
|
||||
var lines =<< trim END
|
||||
vim9script
|
||||
def Func()
|
||||
throw 'error'
|
||||
enddef
|
||||
silent! Func()
|
||||
END
|
||||
writefile(lines, 'XthrowSilenced')
|
||||
source XthrowSilenced
|
||||
delete('XthrowSilenced')
|
||||
enddef
|
||||
|
||||
def DeletedFunc(): list<any>
|
||||
return ['delete me']
|
||||
enddef
|
||||
|
Reference in New Issue
Block a user