call delete('Xtest2.vim')
endfunc
+func Test_debug_def_function()
+ CheckCWD
+ let file =<< trim END
+ vim9script
+ def g:Func()
+ var n: number
+ def Closure(): number
+ return n + 3
+ enddef
+ n += Closure()
+ echo 'result: ' .. n
+ enddef
+ END
+ call writefile(file, 'Xtest.vim')
+
+ let buf = RunVimInTerminal('-S Xtest.vim', {})
+
+ call RunDbgCmd(buf,
+ \ ':debug call Func()',
+ \ ['cmd: call Func()'])
+ call RunDbgCmd(buf, 'next', ['result: 3'])
+ call term_sendkeys(buf, "\r")
+
+ call StopVimInTerminal(buf)
+ call delete('Xtest.vim')
+endfunc
+
func Test_debug_backtrace_level()
CheckCWD
let lines =<< trim END
int error;
int idx;
int did_emsg_before = did_emsg;
- compiletype_T compile_type = CT_NONE;
+ compiletype_T compile_type = COMPILE_TYPE(ufunc);
-#ifdef FEAT_PROFILE
- if (do_profiling == PROF_YES && ufunc->uf_profiling)
- compile_type = CT_PROFILE;
-#endif
if (func_needs_compiling(ufunc, compile_type)
&& compile_def_function(ufunc, FALSE, compile_type, NULL)
== FAIL)