0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 9.0.1951: Vim9: hard to debug vim9_class errors from CI

Problem:  Vim9: hard to debug vim9_class errors from CI
Solution: Include the line number in assert_xxx() calls.  Include the
          entire error message in the tests.  Fix the indentation in the
          test file.  Add tags for new error codes.

closes: #13206

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
This commit is contained in:
Yegappan Lakshmanan
2023-09-28 23:06:48 +02:00
committed by Christian Brabandt
parent 413f83990f
commit b90e3bc491
6 changed files with 1567 additions and 1565 deletions

View File

@@ -1577,7 +1577,7 @@ early_ret:
}
if (!is_class)
{
emsg(_(e_public_member_not_supported_in_interface));
emsg(_(e_public_variable_not_supported_in_interface));
break;
}
has_public = TRUE;