0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00

patch 8.2.4020: debugger test fails

Problem:    Debugger test fails.
Solution:   Fix import statement.
This commit is contained in:
Bram Moolenaar 2022-01-06 21:31:19 +00:00
parent d5f400c607
commit 84c62d59a3
2 changed files with 4 additions and 2 deletions

View File

@ -891,7 +891,7 @@ func Test_Backtrace_DefFunction()
CheckCWD CheckCWD
let file1 =<< trim END let file1 =<< trim END
vim9script vim9script
import File2Function from './Xtest2.vim' import './Xtest2.vim' as imp
def SourceAnotherFile() def SourceAnotherFile()
source Xtest2.vim source Xtest2.vim
@ -899,7 +899,7 @@ func Test_Backtrace_DefFunction()
def CallAFunction() def CallAFunction()
SourceAnotherFile() SourceAnotherFile()
File2Function() imp.File2Function()
enddef enddef
def g:GlobalFunction() def g:GlobalFunction()

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
4020,
/**/ /**/
4019, 4019,
/**/ /**/