diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-10 16:55:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-10 16:55:58 +0000 |
commit | 9fffef9f3562e05755e4b3c46509b2eeeb623ff7 (patch) | |
tree | cb16a0a914ba937887e7801dd2b436a71de39bfe /src | |
parent | b711814cb64b60ec4918e3e1fb2ca5c50d6e9340 (diff) | |
download | vim-git-9fffef9f3562e05755e4b3c46509b2eeeb623ff7.tar.gz |
patch 8.2.3775: Vim9: lambda compiled without outer context when debuggingv8.2.3775
Problem: Vim9: lambda compiled without outer context when debugging.
Solution: When compiling a lambda for debugging also compile it without.
(closes #9302)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_vim9_script.vim | 23 | ||||
-rw-r--r-- | src/version.c | 2 | ||||
-rw-r--r-- | src/vim9compile.c | 11 |
3 files changed, 32 insertions, 4 deletions
diff --git a/src/testdir/test_vim9_script.vim b/src/testdir/test_vim9_script.vim index 4d83a4e8f..ccbdc70bc 100644 --- a/src/testdir/test_vim9_script.vim +++ b/src/testdir/test_vim9_script.vim @@ -4634,6 +4634,29 @@ def Test_xxx_echoerr_line_number() CheckDefExecAndScriptFailure(lines, 'some error continued', 1) enddef +def Test_debug_with_lambda() + CheckRunVimInTerminal + + var lines =<< trim END + vim9script + def Func() + var n = 0 + echo [0]->filter((_, v) => v == n) + enddef + breakadd func Func + Func() + END + writefile(lines, 'XdebugFunc') + var buf = RunVimInTerminal('-S XdebugFunc', {rows: 6, wait_for_ruler: 0}) + WaitForAssert(() => assert_match('^>', term_getline(buf, 6))) + + term_sendkeys(buf, "cont\<CR>") + WaitForAssert(() => assert_match('\[0\]', term_getline(buf, 5))) + + StopVimInTerminal(buf) + delete('XdebugFunc') +enddef + def ProfiledWithLambda() var n = 3 echo [[1, 2], [3, 4]]->filter((_, l) => l[0] == n) diff --git a/src/version.c b/src/version.c index 79abb50b2..9bf1fa27c 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3775, +/**/ 3774, /**/ 3773, diff --git a/src/vim9compile.c b/src/vim9compile.c index cde56ac20..a75219e0a 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -3762,12 +3762,15 @@ compile_lambda(char_u **arg, cctx_T *cctx) ufunc->uf_ret_type = &t_unknown; compile_def_function(ufunc, FALSE, cctx->ctx_compile_type, cctx); + // When the outer function is compiled for profiling or debugging, the + // lambda may be called without profiling or debugging. Compile it here in + // the right context. + if (cctx->ctx_compile_type == CT_DEBUG #ifdef FEAT_PROFILE - // When the outer function is compiled for profiling, the lambda may be - // called without profiling. Compile it here in the right context. - if (cctx->ctx_compile_type == CT_PROFILE) - compile_def_function(ufunc, FALSE, CT_NONE, cctx); + || cctx->ctx_compile_type == CT_PROFILE #endif + ) + compile_def_function(ufunc, FALSE, CT_NONE, cctx); // The last entry in evalarg.eval_tofree_ga is a copy of the last line and // "*arg" may point into it. Point into the original line to avoid a |