comparison src/proto/vim9instr.pro @ 33387:577ef266309d v9.0.1952

patch 9.0.1952: Vim9: unused static field Commit: https://github.com/vim/vim/commit/5a05d374d30577ee195e87e7929062ab1a0a076a Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Fri Sep 29 19:43:11 2023 +0200 patch 9.0.1952: Vim9: unused static field Problem: Vim9: unused static field Solution: remove it and simplify code closes: #13220 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Sep 2023 19:45:06 +0200
parents 88fa56e88cd7
children 016d8f863230
comparison
equal deleted inserted replaced
33386:bec417c694fd 33387:577ef266309d
2 isn_T *generate_instr(cctx_T *cctx, isntype_T isn_type); 2 isn_T *generate_instr(cctx_T *cctx, isntype_T isn_type);
3 isn_T *generate_instr_drop(cctx_T *cctx, isntype_T isn_type, int drop); 3 isn_T *generate_instr_drop(cctx_T *cctx, isntype_T isn_type, int drop);
4 isn_T *generate_instr_type(cctx_T *cctx, isntype_T isn_type, type_T *type); 4 isn_T *generate_instr_type(cctx_T *cctx, isntype_T isn_type, type_T *type);
5 isn_T *generate_instr_debug(cctx_T *cctx); 5 isn_T *generate_instr_debug(cctx_T *cctx);
6 int generate_CONSTRUCT(cctx_T *cctx, class_T *cl); 6 int generate_CONSTRUCT(cctx_T *cctx, class_T *cl);
7 int generate_GET_OBJ_MEMBER(cctx_T *cctx, int idx, type_T *type, int is_static); 7 int generate_GET_OBJ_MEMBER(cctx_T *cctx, int idx, type_T *type);
8 int generate_GET_ITF_MEMBER(cctx_T *cctx, class_T *itf, int idx, type_T *type, int is_static); 8 int generate_GET_ITF_MEMBER(cctx_T *cctx, class_T *itf, int idx, type_T *type);
9 int generate_STORE_THIS(cctx_T *cctx, int idx); 9 int generate_STORE_THIS(cctx_T *cctx, int idx);
10 int may_generate_2STRING(int offset, int tolerant, cctx_T *cctx); 10 int may_generate_2STRING(int offset, int tolerant, cctx_T *cctx);
11 int generate_add_instr(cctx_T *cctx, vartype_T vartype, type_T *type1, type_T *type2, exprtype_T expr_type); 11 int generate_add_instr(cctx_T *cctx, vartype_T vartype, type_T *type1, type_T *type2, exprtype_T expr_type);
12 vartype_T operator_type(type_T *type1, type_T *type2); 12 vartype_T operator_type(type_T *type1, type_T *type2);
13 int generate_two_op(cctx_T *cctx, char_u *op); 13 int generate_two_op(cctx_T *cctx, char_u *op);