forked from aniani/vim
patch 9.1.0255: Vim9: no indication of script nr in stack trace of classes
Problem: Vim9: no indication of script nr in stack trace of classes Solution: Prefix the class name with the script name in the stack trace. (Ernie Rael) fixes: #14376 closes: #14390 Signed-off-by: Ernie Rael <errael@raelity.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
0a419e07a7
commit
16cdfa69e0
@@ -215,6 +215,9 @@ estack_sfile(estack_arg_T which UNUSED)
|
|||||||
if (*class_name != NUL)
|
if (*class_name != NUL)
|
||||||
{
|
{
|
||||||
// For class methods prepend "<class name>." to the function name.
|
// For class methods prepend "<class name>." to the function name.
|
||||||
|
ga_concat(&ga, (char_u *)"<SNR>");
|
||||||
|
ga.ga_len += vim_snprintf((char *)ga.ga_data + ga.ga_len, 23,
|
||||||
|
"%d_", entry->es_info.ufunc->uf_script_ctx.sc_sid);
|
||||||
ga_concat(&ga, class_name);
|
ga_concat(&ga, class_name);
|
||||||
ga_append(&ga, '.');
|
ga_append(&ga, '.');
|
||||||
}
|
}
|
||||||
|
@@ -3741,7 +3741,7 @@ def Test_stack_expansion_with_methods()
|
|||||||
endclass
|
endclass
|
||||||
|
|
||||||
def F0()
|
def F0()
|
||||||
assert_match('<SNR>\d\+_F\[1\]\.\.C\.M1\[1\]\.\.<SNR>\d\+_F0\[1\]$', expand('<stack>'))
|
assert_match('<SNR>\d\+_F\[1\]\.\.<SNR>\d\+_C\.M1\[1\]\.\.<SNR>\d\+_F0\[1\]$', expand('<stack>'))
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
def F()
|
def F()
|
||||||
|
@@ -704,6 +704,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 */
|
||||||
|
/**/
|
||||||
|
255,
|
||||||
/**/
|
/**/
|
||||||
254,
|
254,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user