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:
parent
d5f400c607
commit
84c62d59a3
@ -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()
|
||||||
|
@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user