0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 9.0.2055: Vim9: non-consistent error messages

Problem:  Vim9: non-consistent error messages
Solution: make error messages more consistent with common structure

Adjust vim9class messages to follow common pattern.
[Variable|Method] "var-or-meth-name" ... class "class-name"

closes: #13391

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Ernie Rael <errael@raelity.com>
This commit is contained in:
Ernie Rael
2023-10-20 11:59:00 +02:00
committed by Christian Brabandt
parent ac709e2fc0
commit d4802ec485
4 changed files with 17 additions and 15 deletions

View File

@@ -2974,8 +2974,8 @@ method_not_found_msg(class_T *cl, vartype_T v_type, char_u *name, size_t len)
method_name, cl->class_name);
}
else
semsg(_(e_method_not_found_on_class_str_str), cl->class_name,
method_name);
semsg(_(e_method_not_found_on_class_str_str), method_name,
cl->class_name);
vim_free(method_name);
}
@@ -2993,8 +2993,8 @@ member_not_found_msg(class_T *cl, vartype_T v_type, char_u *name, size_t len)
semsg(_(e_class_variable_str_accessible_only_using_class_str),
varname, cl->class_name);
else
semsg(_(e_variable_not_found_on_object_str_str), cl->class_name,
varname);
semsg(_(e_variable_not_found_on_object_str_str), varname,
cl->class_name);
}
else
{