summaryrefslogtreecommitdiffstats
path: root/src/testdir
diff options
context:
space:
mode:
authorErnie Rael <errael@raelity.com>2024-04-02 19:05:39 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-02 19:05:39 +0200
commit16cdfa69e07190674a8e85a48144a467472ca2f4 (patch)
tree5bdb592afd8f78f6e626a2951bbd8e53c593f7d0 /src/testdir
parent0a419e07a705675ac159218f42c1daa151d2ceea (diff)
patch 9.1.0255: Vim9: no indication of script nr in stack trace of classesv9.1.0255
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>
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_vim9_class.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_vim9_class.vim b/src/testdir/test_vim9_class.vim
index 0bc3639305..cf900f7630 100644
--- a/src/testdir/test_vim9_class.vim
+++ b/src/testdir/test_vim9_class.vim
@@ -3741,7 +3741,7 @@ def Test_stack_expansion_with_methods()
endclass
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
def F()