blob: fb66a788061f21e787f43ce7622aba2683e695bb [file] [log] [blame]
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001/* vi:set ts=8 sts=4 sw=4 noet:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
Bram Moolenaardc7c3662021-12-20 15:04:29 +000011 * vim9compile.c: compiling a :def function
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010012 */
13
14#define USING_FLOAT_STUFF
15#include "vim.h"
16
17#if defined(FEAT_EVAL) || defined(PROTO)
18
Bram Moolenaardc7c3662021-12-20 15:04:29 +000019// When not generating protos this is included in proto.h
20#ifdef PROTO
21# include "vim9.h"
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010022#endif
23
Bram Moolenaardc7c3662021-12-20 15:04:29 +000024// Functions defined with :def are stored in this growarray.
25// They are never removed, so that they can be found by index.
26// Deleted functions have the df_deleted flag set.
27garray_T def_functions = {0, 0, sizeof(dfunc_T), 50, NULL};
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010028
Bram Moolenaarcdc40c42020-12-26 17:43:08 +010029static void delete_def_function_contents(dfunc_T *dfunc, int mark_deleted);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010030
31/*
Bram Moolenaar709664c2020-12-12 14:33:41 +010032 * Lookup variable "name" in the local scope and return it in "lvar".
Bram Moolenaarab360522021-01-10 14:02:28 +010033 * "lvar->lv_from_outer" is incremented accordingly.
Bram Moolenaar709664c2020-12-12 14:33:41 +010034 * If "lvar" is NULL only check if the variable can be found.
35 * Return FAIL if not found.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010036 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +000037 int
Bram Moolenaar709664c2020-12-12 14:33:41 +010038lookup_local(char_u *name, size_t len, lvar_T *lvar, cctx_T *cctx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010039{
40 int idx;
Bram Moolenaar709664c2020-12-12 14:33:41 +010041 lvar_T *lvp;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010042
Bram Moolenaarae8d2de2020-02-13 21:42:24 +010043 if (len == 0)
Bram Moolenaar709664c2020-12-12 14:33:41 +010044 return FAIL;
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020045
46 // Find local in current function scope.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010047 for (idx = 0; idx < cctx->ctx_locals.ga_len; ++idx)
48 {
Bram Moolenaar709664c2020-12-12 14:33:41 +010049 lvp = ((lvar_T *)cctx->ctx_locals.ga_data) + idx;
Bram Moolenaara275f2c2022-10-11 20:04:09 +010050 if (lvp->lv_name != NULL
51 && STRNCMP(name, lvp->lv_name, len) == 0
Bram Moolenaar709664c2020-12-12 14:33:41 +010052 && STRLEN(lvp->lv_name) == len)
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020053 {
Bram Moolenaar709664c2020-12-12 14:33:41 +010054 if (lvar != NULL)
55 {
56 *lvar = *lvp;
Bram Moolenaarab360522021-01-10 14:02:28 +010057 lvar->lv_from_outer = 0;
Bram Moolenaar65449bd2022-09-19 16:02:43 +010058 // If the variable was declared inside a loop set
59 // lvar->lv_loop_idx and lvar->lv_loop_depth.
60 get_loop_var_idx(cctx, idx, lvar);
Bram Moolenaar709664c2020-12-12 14:33:41 +010061 }
62 return OK;
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020063 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010064 }
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020065
66 // Find local in outer function scope.
67 if (cctx->ctx_outer != NULL)
68 {
Bram Moolenaar709664c2020-12-12 14:33:41 +010069 if (lookup_local(name, len, lvar, cctx->ctx_outer) == OK)
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020070 {
Bram Moolenaar709664c2020-12-12 14:33:41 +010071 if (lvar != NULL)
72 {
73 cctx->ctx_outer_used = TRUE;
Bram Moolenaarab360522021-01-10 14:02:28 +010074 ++lvar->lv_from_outer;
Bram Moolenaar709664c2020-12-12 14:33:41 +010075 }
76 return OK;
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +020077 }
78 }
79
Bram Moolenaar709664c2020-12-12 14:33:41 +010080 return FAIL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010081}
82
83/*
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +020084 * Lookup an argument in the current function and an enclosing function.
85 * Returns the argument index in "idxp"
86 * Returns the argument type in "type"
87 * Sets "gen_load_outer" to TRUE if found in outer scope.
88 * Returns OK when found, FAIL otherwise.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010089 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +000090 int
Bram Moolenaarfbbcd002020-10-15 12:46:44 +020091arg_exists(
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +020092 char_u *name,
93 size_t len,
94 int *idxp,
95 type_T **type,
96 int *gen_load_outer,
97 cctx_T *cctx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010098{
99 int idx;
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200100 char_u *va_name;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100101
Bram Moolenaarae8d2de2020-02-13 21:42:24 +0100102 if (len == 0)
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200103 return FAIL;
Bram Moolenaare28d9b32021-07-03 18:56:53 +0200104 for (idx = 0; idx < cctx->ctx_ufunc->uf_args_visible; ++idx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100105 {
106 char_u *arg = FUNCARG(cctx->ctx_ufunc, idx);
107
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200108 if (STRNCMP(name, arg, len) == 0 && arg[len] == NUL)
109 {
110 if (idxp != NULL)
111 {
112 // Arguments are located above the frame pointer. One further
113 // if there is a vararg argument
114 *idxp = idx - (cctx->ctx_ufunc->uf_args.ga_len
115 + STACK_FRAME_SIZE)
116 + (cctx->ctx_ufunc->uf_va_name != NULL ? -1 : 0);
117
118 if (cctx->ctx_ufunc->uf_arg_types != NULL)
119 *type = cctx->ctx_ufunc->uf_arg_types[idx];
120 else
121 *type = &t_any;
122 }
123 return OK;
124 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100125 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100126
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200127 va_name = cctx->ctx_ufunc->uf_va_name;
128 if (va_name != NULL
129 && STRNCMP(name, va_name, len) == 0 && va_name[len] == NUL)
130 {
131 if (idxp != NULL)
132 {
133 // varargs is always the last argument
134 *idxp = -STACK_FRAME_SIZE - 1;
135 *type = cctx->ctx_ufunc->uf_va_type;
136 }
137 return OK;
138 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100139
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200140 if (cctx->ctx_outer != NULL)
141 {
142 // Lookup the name for an argument of the outer function.
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200143 if (arg_exists(name, len, idxp, type, gen_load_outer, cctx->ctx_outer)
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200144 == OK)
145 {
Bram Moolenaar44ec21c2021-02-12 21:50:57 +0100146 if (gen_load_outer != NULL)
147 ++*gen_load_outer;
Bram Moolenaar2fd4cd72020-05-03 22:30:49 +0200148 return OK;
149 }
150 }
151
152 return FAIL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100153}
154
155/*
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200156 * Lookup a script-local variable in the current script, possibly defined in a
157 * block that contains the function "cctx->ctx_ufunc".
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000158 * "cctx" is NULL at the script level, "cstack" is NULL in a function.
Bram Moolenaar18062fc2021-03-05 21:35:47 +0100159 * If "len" is <= 0 "name" must be NUL terminated.
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200160 * Return NULL when not found.
161 */
162 static sallvar_T *
Bram Moolenaardce24412022-02-08 20:35:30 +0000163find_script_var(char_u *name, size_t len, cctx_T *cctx, cstack_T *cstack)
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200164{
165 scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
166 hashitem_T *hi;
167 int cc;
168 sallvar_T *sav;
169 ufunc_T *ufunc;
170
171 // Find the list of all script variables with the right name.
172 if (len > 0)
173 {
174 cc = name[len];
175 name[len] = NUL;
176 }
177 hi = hash_find(&si->sn_all_vars.dv_hashtab, name);
178 if (len > 0)
179 name[len] = cc;
180 if (HASHITEM_EMPTY(hi))
181 return NULL;
182
183 sav = HI2SAV(hi);
Bram Moolenaar3c77b6a2021-07-25 18:07:00 +0200184 if (sav->sav_block_id == 0)
185 // variable defined in the top script scope is always visible
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200186 return sav;
187
Bram Moolenaar3c77b6a2021-07-25 18:07:00 +0200188 if (cctx == NULL)
189 {
Bram Moolenaar766ae5b2022-09-14 00:30:51 +0100190 if (cstack == NULL)
191 return NULL;
192
Bram Moolenaardce24412022-02-08 20:35:30 +0000193 // Not in a function scope, find variable with block ID equal to or
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000194 // smaller than the current block id. Use "cstack" to go up the block
195 // scopes.
Bram Moolenaar3c77b6a2021-07-25 18:07:00 +0200196 while (sav != NULL)
197 {
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000198 int idx;
Bram Moolenaardce24412022-02-08 20:35:30 +0000199
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000200 for (idx = cstack->cs_idx; idx >= 0; --idx)
201 if (cstack->cs_block_id[idx] == sav->sav_block_id)
Bram Moolenaardce24412022-02-08 20:35:30 +0000202 break;
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000203 if (idx >= 0)
Bram Moolenaar3c77b6a2021-07-25 18:07:00 +0200204 break;
205 sav = sav->sav_next;
206 }
207 return sav;
208 }
209
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200210 // Go over the variables with this name and find one that was visible
211 // from the function.
212 ufunc = cctx->ctx_ufunc;
213 while (sav != NULL)
214 {
215 int idx;
216
217 // Go over the blocks that this function was defined in. If the
218 // variable block ID matches it was visible to the function.
219 for (idx = 0; idx < ufunc->uf_block_depth; ++idx)
220 if (ufunc->uf_block_ids[idx] == sav->sav_block_id)
221 return sav;
222 sav = sav->sav_next;
223 }
224
Bram Moolenaar58493cf2022-01-06 12:23:30 +0000225 // Not found, variable was not visible.
226 return NULL;
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200227}
228
229/*
Bram Moolenaar766ae5b2022-09-14 00:30:51 +0100230 * If "name" can be found in the current script set it's "block_id".
231 */
232 void
233update_script_var_block_id(char_u *name, int block_id)
234{
235 scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
236 hashitem_T *hi;
237 sallvar_T *sav;
238
239 hi = hash_find(&si->sn_all_vars.dv_hashtab, name);
240 if (HASHITEM_EMPTY(hi))
241 return;
242 sav = HI2SAV(hi);
243 sav->sav_block_id = block_id;
244}
245
246/*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +0100247 * Return TRUE if the script context is Vim9 script.
Bram Moolenaar84367732020-08-23 15:21:55 +0200248 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000249 int
Bram Moolenaar84367732020-08-23 15:21:55 +0200250script_is_vim9()
251{
252 return SCRIPT_ITEM(current_sctx.sc_sid)->sn_version == SCRIPT_VERSION_VIM9;
253}
254
255/*
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200256 * Lookup a variable (without s: prefix) in the current script.
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000257 * "cctx" is NULL at the script level, "cstack" is NULL in a function.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100258 * Returns OK or FAIL.
259 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000260 int
Bram Moolenaardce24412022-02-08 20:35:30 +0000261script_var_exists(char_u *name, size_t len, cctx_T *cctx, cstack_T *cstack)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100262{
Bram Moolenaar9c4f5522020-09-25 21:47:28 +0200263 if (current_sctx.sc_sid <= 0)
264 return FAIL;
Bram Moolenaar15e5e532021-04-07 21:21:13 +0200265 if (script_is_vim9())
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200266 {
267 // Check script variables that were visible where the function was
268 // defined.
Bram Moolenaardce24412022-02-08 20:35:30 +0000269 if (find_script_var(name, len, cctx, cstack) != NULL)
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200270 return OK;
271 }
272 else
273 {
274 hashtab_T *ht = &SCRIPT_VARS(current_sctx.sc_sid);
275 dictitem_T *di;
276 int cc;
277
278 // Check script variables that are currently visible
279 cc = name[len];
280 name[len] = NUL;
281 di = find_var_in_ht(ht, 0, name, TRUE);
282 name[len] = cc;
283 if (di != NULL)
284 return OK;
285 }
286
287 return FAIL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100288}
289
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100290/*
Bram Moolenaare0890d62021-02-17 14:52:14 +0100291 * Return TRUE if "name" is a local variable, argument, script variable or
292 * imported.
293 */
294 static int
295variable_exists(char_u *name, size_t len, cctx_T *cctx)
296{
Bram Moolenaar057e84a2021-02-28 16:55:11 +0100297 return (cctx != NULL
298 && (lookup_local(name, len, NULL, cctx) == OK
299 || arg_exists(name, len, NULL, NULL, NULL, cctx) == OK))
Bram Moolenaardce24412022-02-08 20:35:30 +0000300 || script_var_exists(name, len, cctx, NULL) == OK
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000301 || find_imported(name, len, FALSE) != NULL;
Bram Moolenaare0890d62021-02-17 14:52:14 +0100302}
303
304/*
Bram Moolenaar6914e872021-03-06 21:01:09 +0100305 * Return TRUE if "name" is a local variable, argument, script variable,
Bram Moolenaar97f8c102022-04-02 19:43:57 +0100306 * imported or function. Or commands are being skipped, a declaration may have
307 * been skipped then.
Bram Moolenaar6914e872021-03-06 21:01:09 +0100308 */
309 static int
Bram Moolenaar77b10ff2021-03-14 13:21:35 +0100310item_exists(char_u *name, size_t len, int cmd UNUSED, cctx_T *cctx)
Bram Moolenaar6914e872021-03-06 21:01:09 +0100311{
Bram Moolenaar0631bb42022-02-13 21:20:21 +0000312 return variable_exists(name, len, cctx);
Bram Moolenaar6914e872021-03-06 21:01:09 +0100313}
314
315/*
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100316 * Check if "p[len]" is already defined, either in script "import_sid" or in
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000317 * compilation context "cctx".
318 * "cctx" is NULL at the script level, "cstack" is NULL in a function.
Bram Moolenaar0f769812020-09-12 18:32:34 +0200319 * Does not check the global namespace.
Bram Moolenaar057e84a2021-02-28 16:55:11 +0100320 * If "is_arg" is TRUE the error message is for an argument name.
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100321 * Return FAIL and give an error if it defined.
322 */
323 int
Bram Moolenaardce24412022-02-08 20:35:30 +0000324check_defined(
325 char_u *p,
326 size_t len,
327 cctx_T *cctx,
328 cstack_T *cstack,
329 int is_arg)
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100330{
Bram Moolenaar0f769812020-09-12 18:32:34 +0200331 int c = p[len];
332 ufunc_T *ufunc = NULL;
Bram Moolenaarad486a02020-08-01 23:22:18 +0200333
Bram Moolenaarda479c72021-04-10 21:01:38 +0200334 // underscore argument is OK
335 if (len == 1 && *p == '_')
336 return OK;
337
Bram Moolenaardce24412022-02-08 20:35:30 +0000338 if (script_var_exists(p, len, cctx, cstack) == OK)
Bram Moolenaar057e84a2021-02-28 16:55:11 +0100339 {
340 if (is_arg)
341 semsg(_(e_argument_already_declared_in_script_str), p);
342 else
343 semsg(_(e_variable_already_declared_in_script_str), p);
344 return FAIL;
345 }
346
Bram Moolenaarad486a02020-08-01 23:22:18 +0200347 p[len] = NUL;
Bram Moolenaar057e84a2021-02-28 16:55:11 +0100348 if ((cctx != NULL
Bram Moolenaar709664c2020-12-12 14:33:41 +0100349 && (lookup_local(p, len, NULL, cctx) == OK
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200350 || arg_exists(p, len, NULL, NULL, NULL, cctx) == OK))
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000351 || find_imported(p, len, FALSE) != NULL
Bram Moolenaaracc4b562022-01-24 13:54:45 +0000352 || (ufunc = find_func_even_dead(p, 0)) != NULL)
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100353 {
Bram Moolenaar0f769812020-09-12 18:32:34 +0200354 // A local or script-local function can shadow a global function.
Bram Moolenaar577dc932021-06-27 15:35:40 +0200355 if (ufunc == NULL || ((ufunc->uf_flags & FC_DEAD) == 0
356 && (!func_is_global(ufunc)
357 || (p[0] == 'g' && p[1] == ':'))))
Bram Moolenaar0f769812020-09-12 18:32:34 +0200358 {
Bram Moolenaar057e84a2021-02-28 16:55:11 +0100359 if (is_arg)
360 semsg(_(e_argument_name_shadows_existing_variable_str), p);
361 else
362 semsg(_(e_name_already_defined_str), p);
Bram Moolenaar0f769812020-09-12 18:32:34 +0200363 p[len] = c;
Bram Moolenaar0f769812020-09-12 18:32:34 +0200364 return FAIL;
365 }
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100366 }
Bram Moolenaarad486a02020-08-01 23:22:18 +0200367 p[len] = c;
Bram Moolenaar5269bd22020-03-09 19:25:27 +0100368 return OK;
369}
370
Bram Moolenaar65b95452020-07-19 14:03:09 +0200371
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100372/*
Bram Moolenaar334a8b42020-10-19 16:07:42 +0200373 * Return TRUE if "actual" could be "expected" and a runtime typecheck is to be
374 * used. Return FALSE if the types will never match.
375 */
Yegappan Lakshmanan8ee52af2021-08-09 19:59:06 +0200376 static int
Bram Moolenaar334a8b42020-10-19 16:07:42 +0200377use_typecheck(type_T *actual, type_T *expected)
378{
379 if (actual->tt_type == VAR_ANY
380 || actual->tt_type == VAR_UNKNOWN
381 || (actual->tt_type == VAR_FUNC
382 && (expected->tt_type == VAR_FUNC
383 || expected->tt_type == VAR_PARTIAL)
Bram Moolenaarfa46ead2021-12-22 13:18:39 +0000384 && (actual->tt_member == &t_any
385 || actual->tt_member == &t_unknown
386 || actual->tt_argcount < 0)
387 && (actual->tt_member == &t_unknown ||
388 (actual->tt_member == &t_void)
Bram Moolenaar328eac22021-01-07 19:23:08 +0100389 == (expected->tt_member == &t_void))))
Bram Moolenaar334a8b42020-10-19 16:07:42 +0200390 return TRUE;
391 if ((actual->tt_type == VAR_LIST || actual->tt_type == VAR_DICT)
392 && actual->tt_type == expected->tt_type)
393 // This takes care of a nested list or dict.
394 return use_typecheck(actual->tt_member, expected->tt_member);
395 return FALSE;
396}
397
398/*
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +0200399 * Check that
Bram Moolenaar5e654232020-09-16 15:22:00 +0200400 * - "actual" matches "expected" type or
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +0200401 * - "actual" is a type that can be "expected" type: add a runtime check; or
402 * - return FAIL.
Bram Moolenaar334a8b42020-10-19 16:07:42 +0200403 * If "actual_is_const" is TRUE then the type won't change at runtime, do not
404 * generate a TYPECHECK.
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +0200405 */
Bram Moolenaara1c51952022-02-02 16:20:26 +0000406 int
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200407need_type_where(
408 type_T *actual,
409 type_T *expected,
410 int offset,
411 where_T where,
412 cctx_T *cctx,
413 int silent,
414 int actual_is_const)
415{
Bram Moolenaar44a89772021-12-18 12:31:33 +0000416 int ret;
417
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200418 if (expected == &t_bool && actual != &t_bool
419 && (actual->tt_flags & TTFLAG_BOOL_OK))
420 {
421 // Using "0", "1" or the result of an expression with "&&" or "||" as a
422 // boolean is OK but requires a conversion.
423 generate_2BOOL(cctx, FALSE, offset);
424 return OK;
425 }
426
Bram Moolenaar44a89772021-12-18 12:31:33 +0000427 ret = check_type_maybe(expected, actual, FALSE, where);
428 if (ret == OK)
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200429 return OK;
430
Bram Moolenaar8acb9cc2022-03-08 13:18:55 +0000431 // If actual a constant a runtime check makes no sense. If it's
432 // null_function it is OK.
433 if (actual_is_const && ret == MAYBE && actual == &t_func_unknown)
434 return OK;
435
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200436 // If the actual type can be the expected type add a runtime check.
Bram Moolenaarfa46ead2021-12-22 13:18:39 +0000437 if (!actual_is_const && ret == MAYBE && use_typecheck(actual, expected))
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200438 {
Bram Moolenaarbd3a9d22022-05-17 16:12:39 +0100439 generate_TYPECHECK(cctx, expected, offset,
440 where.wt_variable, where.wt_index);
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200441 return OK;
442 }
443
444 if (!silent)
445 type_mismatch_where(expected, actual, where);
446 return FAIL;
447}
448
Bram Moolenaar351ead02021-01-16 16:07:01 +0100449 int
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +0200450need_type(
451 type_T *actual,
452 type_T *expected,
453 int offset,
Bram Moolenaar351ead02021-01-16 16:07:01 +0100454 int arg_idx,
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +0200455 cctx_T *cctx,
Bram Moolenaar334a8b42020-10-19 16:07:42 +0200456 int silent,
457 int actual_is_const)
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +0200458{
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +0200459 where_T where = WHERE_INIT;
Bram Moolenaarf785aa12021-02-11 21:19:34 +0100460
Bram Moolenaarf785aa12021-02-11 21:19:34 +0100461 where.wt_index = arg_idx;
Bram Moolenaar4270d8b2021-08-07 16:30:42 +0200462 return need_type_where(actual, expected, offset, where,
463 cctx, silent, actual_is_const);
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +0200464}
465
466/*
Bram Moolenaarfa103972022-09-29 19:14:42 +0100467 * Set type of variable "lvar" to "type". If the variable is a constant then
468 * the type gets TTFLAG_CONST.
469 */
470 static void
471set_var_type(lvar_T *lvar, type_T *type_arg, cctx_T *cctx)
472{
473 type_T *type = type_arg;
474
Bram Moolenaar6586a012022-09-30 11:04:50 +0100475 if (lvar->lv_const == ASSIGN_CONST && (type->tt_flags & TTFLAG_CONST) == 0)
Bram Moolenaarfa103972022-09-29 19:14:42 +0100476 {
477 if (type->tt_flags & TTFLAG_STATIC)
478 // entry in static_types[] is followed by const type
479 type = type + 1;
480 else
481 {
482 type = copy_type(type, cctx->ctx_type_list);
483 type->tt_flags |= TTFLAG_CONST;
484 }
485 }
486 lvar->lv_type = type;
487}
488
489/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100490 * Reserve space for a local variable.
Bram Moolenaar6586a012022-09-30 11:04:50 +0100491 * "assign" can be ASSIGN_VAR for :var, ASSIGN_CONST for :const and
492 * ASSIGN_FINAL for :final.
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200493 * Return the variable or NULL if it failed.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100494 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000495 lvar_T *
Bram Moolenaare8211a32020-10-09 22:04:29 +0200496reserve_local(
497 cctx_T *cctx,
498 char_u *name,
499 size_t len,
Bram Moolenaar6586a012022-09-30 11:04:50 +0100500 int assign,
Bram Moolenaare8211a32020-10-09 22:04:29 +0200501 type_T *type)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100502{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100503 lvar_T *lvar;
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +0200504 dfunc_T *dfunc;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100505
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200506 if (arg_exists(name, len, NULL, NULL, NULL, cctx) == OK)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100507 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200508 emsg_namelen(_(e_str_is_used_as_argument), name, (int)len);
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200509 return NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100510 }
511
Bram Moolenaar35578162021-08-02 19:10:38 +0200512 if (GA_GROW_FAILS(&cctx->ctx_locals, 1))
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200513 return NULL;
514 lvar = ((lvar_T *)cctx->ctx_locals.ga_data) + cctx->ctx_locals.ga_len++;
Bram Moolenaare8211a32020-10-09 22:04:29 +0200515 CLEAR_POINTER(lvar);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100516
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200517 // Every local variable uses the next entry on the stack. We could re-use
518 // the last ones when leaving a scope, but then variables used in a closure
519 // might get overwritten. To keep things simple do not re-use stack
520 // entries. This is less efficient, but memory is cheap these days.
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +0200521 dfunc = ((dfunc_T *)def_functions.ga_data) + cctx->ctx_ufunc->uf_dfunc_idx;
522 lvar->lv_idx = dfunc->df_var_names.ga_len;
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200523
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200524 lvar->lv_name = vim_strnsave(name, len == 0 ? STRLEN(name) : len);
Bram Moolenaar6586a012022-09-30 11:04:50 +0100525 lvar->lv_const = assign;
Bram Moolenaarfa103972022-09-29 19:14:42 +0100526 if (type == &t_unknown || type == &t_any)
527 // type not known yet, may be inferred from RHS
528 lvar->lv_type = type;
529 else
530 // may use TTFLAG_CONST
531 set_var_type(lvar, type, cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100532
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +0200533 // Remember the name for debugging.
Bram Moolenaar35578162021-08-02 19:10:38 +0200534 if (GA_GROW_FAILS(&dfunc->df_var_names, 1))
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +0200535 return NULL;
536 ((char_u **)dfunc->df_var_names.ga_data)[lvar->lv_idx] =
537 vim_strsave(lvar->lv_name);
538 ++dfunc->df_var_names.ga_len;
539
Bram Moolenaarb84a3812020-05-01 15:44:29 +0200540 return lvar;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100541}
542
543/*
Bram Moolenaar08251752021-01-11 21:20:18 +0100544 * If "check_writable" is ASSIGN_CONST give an error if the variable was
545 * defined with :final or :const, if "check_writable" is ASSIGN_FINAL give an
546 * error if the variable was defined with :const.
547 */
548 static int
549check_item_writable(svar_T *sv, int check_writable, char_u *name)
550{
551 if ((check_writable == ASSIGN_CONST && sv->sv_const != 0)
552 || (check_writable == ASSIGN_FINAL
553 && sv->sv_const == ASSIGN_CONST))
554 {
Bram Moolenaard8e44472021-07-21 22:20:33 +0200555 semsg(_(e_cannot_change_readonly_variable_str), name);
Bram Moolenaar08251752021-01-11 21:20:18 +0100556 return FAIL;
557 }
558 return OK;
559}
560
561/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100562 * Find "name" in script-local items of script "sid".
Bram Moolenaar08251752021-01-11 21:20:18 +0100563 * Pass "check_writable" to check_item_writable().
Bram Moolenaar7a3b8022022-02-14 19:53:03 +0000564 * "cctx" is NULL at the script level, "cstack" is NULL in a function.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100565 * Returns the index in "sn_var_vals" if found.
566 * If found but not in "sn_var_vals" returns -1.
Bram Moolenaar08251752021-01-11 21:20:18 +0100567 * If not found or the variable is not writable returns -2.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100568 */
569 int
Bram Moolenaarb6a138e2022-02-08 21:17:22 +0000570get_script_item_idx(
571 int sid,
572 char_u *name,
573 int check_writable,
574 cctx_T *cctx,
575 cstack_T *cstack)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100576{
577 hashtab_T *ht;
578 dictitem_T *di;
Bram Moolenaar21b9e972020-01-26 19:26:46 +0100579 scriptitem_T *si = SCRIPT_ITEM(sid);
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200580 svar_T *sv;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100581 int idx;
582
Bram Moolenaare3d46852020-08-29 13:39:17 +0200583 if (!SCRIPT_ID_VALID(sid))
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100584 return -1;
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200585 if (sid == current_sctx.sc_sid)
586 {
Bram Moolenaarb6a138e2022-02-08 21:17:22 +0000587 sallvar_T *sav = find_script_var(name, 0, cctx, cstack);
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200588
589 if (sav == NULL)
590 return -2;
591 idx = sav->sav_var_vals_idx;
592 sv = ((svar_T *)si->sn_var_vals.ga_data) + idx;
Bram Moolenaar08251752021-01-11 21:20:18 +0100593 if (check_item_writable(sv, check_writable, name) == FAIL)
594 return -2;
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200595 return idx;
596 }
597
598 // First look the name up in the hashtable.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100599 ht = &SCRIPT_VARS(sid);
600 di = find_var_in_ht(ht, 0, name, TRUE);
601 if (di == NULL)
Bram Moolenaar577bd852022-01-10 18:42:52 +0000602 {
603 if (si->sn_autoload_prefix != NULL)
604 {
605 hashitem_T *hi;
606
607 // A variable exported from an autoload script is in the global
608 // variables, we can find it in the all_vars table.
609 hi = hash_find(&si->sn_all_vars.dv_hashtab, name);
610 if (!HASHITEM_EMPTY(hi))
611 return HI2SAV(hi)->sav_var_vals_idx;
612 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100613 return -2;
Bram Moolenaar577bd852022-01-10 18:42:52 +0000614 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100615
616 // Now find the svar_T index in sn_var_vals.
617 for (idx = 0; idx < si->sn_var_vals.ga_len; ++idx)
618 {
Bram Moolenaarfbbcd002020-10-15 12:46:44 +0200619 sv = ((svar_T *)si->sn_var_vals.ga_data) + idx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100620 if (sv->sv_tv == &di->di_tv)
621 {
Bram Moolenaar08251752021-01-11 21:20:18 +0100622 if (check_item_writable(sv, check_writable, name) == FAIL)
623 return -2;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100624 return idx;
625 }
626 }
627 return -1;
628}
629
Yegappan Lakshmanan782b43d2022-01-08 18:43:40 +0000630 static imported_T *
631find_imported_in_script(char_u *name, size_t len, int sid)
632{
633 scriptitem_T *si;
634 int idx;
635
636 if (!SCRIPT_ID_VALID(sid))
637 return NULL;
638 si = SCRIPT_ITEM(sid);
639 for (idx = 0; idx < si->sn_imports.ga_len; ++idx)
640 {
641 imported_T *import = ((imported_T *)si->sn_imports.ga_data) + idx;
642
643 if (len == 0 ? STRCMP(name, import->imp_name) == 0
644 : STRLEN(import->imp_name) == len
645 && STRNCMP(name, import->imp_name, len) == 0)
646 return import;
647 }
648 return NULL;
649}
650
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100651/*
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000652 * Find "name" in imported items of the current script.
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +0100653 * If "len" is 0 use any length that works.
Bram Moolenaardc4451d2022-01-09 21:36:37 +0000654 * If "load" is TRUE and the script was not loaded yet, load it now.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100655 */
656 imported_T *
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000657find_imported(char_u *name, size_t len, int load)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100658{
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000659 imported_T *ret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100660
Bram Moolenaare3d46852020-08-29 13:39:17 +0200661 if (!SCRIPT_ID_VALID(current_sctx.sc_sid))
Bram Moolenaar8e6cbb72020-07-01 14:38:12 +0200662 return NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100663
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000664 ret = find_imported_in_script(name, len, current_sctx.sc_sid);
Bram Moolenaarb697dc22022-01-22 11:27:29 +0000665 if (ret != NULL && load && (ret->imp_flags & IMP_FLAGS_AUTOLOAD))
Bram Moolenaardc4451d2022-01-09 21:36:37 +0000666 {
Bram Moolenaar753885b2022-08-24 16:30:36 +0100667 scid_T actual_sid = 0;
Bram Moolenaar6809ff92022-07-26 15:10:56 +0100668 int save_emsg_off = emsg_off;
669
670 // "emsg_off" will be set when evaluating an expression silently, but
671 // we do want to know about errors in a script. Also because it then
672 // aborts when an error is encountered.
673 emsg_off = FALSE;
Bram Moolenaar17d36cb2022-01-12 11:46:40 +0000674
Bram Moolenaardc4451d2022-01-09 21:36:37 +0000675 // script found before but not loaded yet
Bram Moolenaarb697dc22022-01-22 11:27:29 +0000676 ret->imp_flags &= ~IMP_FLAGS_AUTOLOAD;
Bram Moolenaardc4451d2022-01-09 21:36:37 +0000677 (void)do_source(SCRIPT_ITEM(ret->imp_sid)->sn_name, FALSE,
Bram Moolenaar753885b2022-08-24 16:30:36 +0100678 DOSO_NONE, &actual_sid);
679 // If the script is a symlink it may be sourced with another name, may
680 // need to adjust the script ID for that.
681 if (actual_sid != 0)
682 ret->imp_sid = actual_sid;
Bram Moolenaar6809ff92022-07-26 15:10:56 +0100683
684 emsg_off = save_emsg_off;
Bram Moolenaardc4451d2022-01-09 21:36:37 +0000685 }
686 return ret;
Bram Moolenaarefa94442020-08-08 22:16:00 +0200687}
688
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100689/*
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000690 * Called when checking for a following operator at "arg". When the rest of
691 * the line is empty or only a comment, peek the next line. If there is a next
692 * line return a pointer to it and set "nextp".
693 * Otherwise skip over white space.
694 */
695 char_u *
696may_peek_next_line(cctx_T *cctx, char_u *arg, char_u **nextp)
697{
698 char_u *p = skipwhite(arg);
699
700 *nextp = NULL;
701 if (*p == NUL || (VIM_ISWHITE(*arg) && vim9_comment_start(p)))
702 {
703 *nextp = peek_next_line_from_context(cctx);
704 if (*nextp != NULL)
705 return *nextp;
706 }
707 return p;
708}
709
710/*
Bram Moolenaar23c55272020-06-21 16:58:13 +0200711 * Return a pointer to the next line that isn't empty or only contains a
712 * comment. Skips over white space.
713 * Returns NULL if there is none.
714 */
Bram Moolenaar7a4b8982020-07-08 17:36:21 +0200715 char_u *
716peek_next_line_from_context(cctx_T *cctx)
Bram Moolenaar23c55272020-06-21 16:58:13 +0200717{
718 int lnum = cctx->ctx_lnum;
719
720 while (++lnum < cctx->ctx_ufunc->uf_lines.ga_len)
721 {
722 char_u *line = ((char_u **)cctx->ctx_ufunc->uf_lines.ga_data)[lnum];
Bram Moolenaaracd4c5e2020-06-22 19:39:03 +0200723 char_u *p;
Bram Moolenaar23c55272020-06-21 16:58:13 +0200724
Bram Moolenaarba60cc42020-08-12 19:15:33 +0200725 // ignore NULLs inserted for continuation lines
726 if (line != NULL)
727 {
728 p = skipwhite(line);
Bram Moolenaar4b3e1962021-03-18 21:37:55 +0100729 if (vim9_bad_comment(p))
730 return NULL;
Bram Moolenaarba60cc42020-08-12 19:15:33 +0200731 if (*p != NUL && !vim9_comment_start(p))
732 return p;
733 }
Bram Moolenaar23c55272020-06-21 16:58:13 +0200734 }
735 return NULL;
736}
737
738/*
Bram Moolenaare6085c52020-04-12 20:19:16 +0200739 * Get the next line of the function from "cctx".
Bram Moolenaar23c55272020-06-21 16:58:13 +0200740 * Skips over empty lines. Skips over comment lines if "skip_comment" is TRUE.
Bram Moolenaare6085c52020-04-12 20:19:16 +0200741 * Returns NULL when at the end.
742 */
Bram Moolenaar7a4b8982020-07-08 17:36:21 +0200743 char_u *
Bram Moolenaar23c55272020-06-21 16:58:13 +0200744next_line_from_context(cctx_T *cctx, int skip_comment)
Bram Moolenaare6085c52020-04-12 20:19:16 +0200745{
Bram Moolenaar7a092242020-04-16 22:10:49 +0200746 char_u *line;
Bram Moolenaare6085c52020-04-12 20:19:16 +0200747
748 do
749 {
750 ++cctx->ctx_lnum;
751 if (cctx->ctx_lnum >= cctx->ctx_ufunc->uf_lines.ga_len)
Bram Moolenaar7a092242020-04-16 22:10:49 +0200752 {
753 line = NULL;
Bram Moolenaare6085c52020-04-12 20:19:16 +0200754 break;
Bram Moolenaar7a092242020-04-16 22:10:49 +0200755 }
Bram Moolenaare6085c52020-04-12 20:19:16 +0200756 line = ((char_u **)cctx->ctx_ufunc->uf_lines.ga_data)[cctx->ctx_lnum];
Bram Moolenaar7a092242020-04-16 22:10:49 +0200757 cctx->ctx_line_start = line;
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200758 SOURCING_LNUM = cctx->ctx_lnum + 1;
Bram Moolenaar23c55272020-06-21 16:58:13 +0200759 } while (line == NULL || *skipwhite(line) == NUL
Bram Moolenaar2dd0a2c2020-08-08 15:10:27 +0200760 || (skip_comment && vim9_comment_start(skipwhite(line))));
Bram Moolenaare6085c52020-04-12 20:19:16 +0200761 return line;
762}
763
764/*
Bram Moolenaar5afd0812021-01-03 18:33:13 +0100765 * Skip over white space at "whitep" and assign to "*arg".
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200766 * If "*arg" is at the end of the line, advance to the next line.
Bram Moolenaar2c330432020-04-13 14:41:35 +0200767 * Also when "whitep" points to white space and "*arg" is on a "#".
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200768 * Return FAIL if beyond the last line, "*arg" is unmodified then.
769 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000770 int
Bram Moolenaar2c330432020-04-13 14:41:35 +0200771may_get_next_line(char_u *whitep, char_u **arg, cctx_T *cctx)
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200772{
Bram Moolenaar5afd0812021-01-03 18:33:13 +0100773 *arg = skipwhite(whitep);
Bram Moolenaar4b3e1962021-03-18 21:37:55 +0100774 if (vim9_bad_comment(*arg))
775 return FAIL;
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +0200776 if (**arg == NUL || (VIM_ISWHITE(*whitep) && vim9_comment_start(*arg)))
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200777 {
Bram Moolenaar23c55272020-06-21 16:58:13 +0200778 char_u *next = next_line_from_context(cctx, TRUE);
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200779
780 if (next == NULL)
781 return FAIL;
782 *arg = skipwhite(next);
783 }
784 return OK;
785}
786
Bram Moolenaara7eedf32020-07-10 21:50:41 +0200787/*
788 * Idem, and give an error when failed.
789 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000790 int
Bram Moolenaara7eedf32020-07-10 21:50:41 +0200791may_get_next_line_error(char_u *whitep, char_u **arg, cctx_T *cctx)
792{
793 if (may_get_next_line(whitep, arg, cctx) == FAIL)
794 {
Bram Moolenaar8ff16e02020-12-07 21:49:52 +0100795 SOURCING_LNUM = cctx->ctx_lnum + 1;
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200796 emsg(_(e_line_incomplete));
Bram Moolenaara7eedf32020-07-10 21:50:41 +0200797 return FAIL;
798 }
799 return OK;
800}
801
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100802/*
Bram Moolenaar04b12692020-05-04 23:24:44 +0200803 * Get a line from the compilation context, compatible with exarg_T getline().
804 * Return a pointer to the line in allocated memory.
805 * Return NULL for end-of-file or some error.
806 */
807 static char_u *
808exarg_getline(
809 int c UNUSED,
810 void *cookie,
811 int indent UNUSED,
Bram Moolenaar66250c92020-08-20 15:02:42 +0200812 getline_opt_T options UNUSED)
Bram Moolenaar04b12692020-05-04 23:24:44 +0200813{
814 cctx_T *cctx = (cctx_T *)cookie;
Bram Moolenaar66250c92020-08-20 15:02:42 +0200815 char_u *p;
Bram Moolenaar04b12692020-05-04 23:24:44 +0200816
Bram Moolenaar66250c92020-08-20 15:02:42 +0200817 for (;;)
Bram Moolenaar04b12692020-05-04 23:24:44 +0200818 {
Bram Moolenaar2914a202020-09-27 18:24:03 +0200819 if (cctx->ctx_lnum >= cctx->ctx_ufunc->uf_lines.ga_len - 1)
Bram Moolenaar66250c92020-08-20 15:02:42 +0200820 return NULL;
821 ++cctx->ctx_lnum;
822 p = ((char_u **)cctx->ctx_ufunc->uf_lines.ga_data)[cctx->ctx_lnum];
823 // Comment lines result in NULL pointers, skip them.
824 if (p != NULL)
825 return vim_strsave(p);
Bram Moolenaar04b12692020-05-04 23:24:44 +0200826 }
Bram Moolenaar04b12692020-05-04 23:24:44 +0200827}
828
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +0100829 void
830fill_exarg_from_cctx(exarg_T *eap, cctx_T *cctx)
831{
832 eap->getline = exarg_getline;
833 eap->cookie = cctx;
Bram Moolenaar4f3321f2022-03-13 13:12:27 +0000834 eap->skip = cctx->ctx_skip == SKIP_YES;
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +0100835}
836
Bram Moolenaar04b12692020-05-04 23:24:44 +0200837/*
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000838 * Return TRUE if "ufunc" should be compiled, taking into account whether
839 * "profile" indicates profiling is to be done.
840 */
841 int
842func_needs_compiling(ufunc_T *ufunc, compiletype_T compile_type)
843{
844 switch (ufunc->uf_def_status)
845 {
846 case UF_TO_BE_COMPILED:
847 return TRUE;
848
849 case UF_COMPILED:
850 {
851 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
852 + ufunc->uf_dfunc_idx;
853
854 switch (compile_type)
855 {
856 case CT_PROFILE:
857#ifdef FEAT_PROFILE
858 return dfunc->df_instr_prof == NULL;
859#endif
860 case CT_NONE:
861 return dfunc->df_instr == NULL;
862 case CT_DEBUG:
863 return dfunc->df_instr_debug == NULL;
864 }
865 }
866
867 case UF_NOT_COMPILED:
868 case UF_COMPILE_ERROR:
869 case UF_COMPILING:
870 break;
871 }
872 return FALSE;
873}
874
875/*
Bram Moolenaar04b12692020-05-04 23:24:44 +0200876 * Compile a nested :def command.
877 */
878 static char_u *
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +0000879compile_nested_function(exarg_T *eap, cctx_T *cctx, garray_T *lines_to_free)
Bram Moolenaar04b12692020-05-04 23:24:44 +0200880{
Bram Moolenaar38ddf332020-07-31 22:05:04 +0200881 int is_global = *eap->arg == 'g' && eap->arg[1] == ':';
Bram Moolenaar04b12692020-05-04 23:24:44 +0200882 char_u *name_start = eap->arg;
Bram Moolenaarbcbf4132020-08-01 22:35:13 +0200883 char_u *name_end = to_name_end(eap->arg, TRUE);
Bram Moolenaar9c23f9b2021-12-26 14:23:22 +0000884 int off;
885 char_u *func_name;
Bram Moolenaareef21022020-08-01 22:16:43 +0200886 char_u *lambda_name;
Bram Moolenaar04b12692020-05-04 23:24:44 +0200887 ufunc_T *ufunc;
Bram Moolenaar58a52f22020-12-22 18:56:55 +0100888 int r = FAIL;
Bram Moolenaarffcfddc2021-07-11 20:22:30 +0200889 compiletype_T compile_type;
Bram Moolenaara915fa02022-03-23 11:29:15 +0000890 isn_T *funcref_isn = NULL;
Bram Moolenaar1889f492022-08-16 19:34:44 +0100891 lvar_T *lvar = NULL;
Bram Moolenaar04b12692020-05-04 23:24:44 +0200892
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200893 if (eap->forceit)
Bram Moolenaar8b848ca2020-09-10 22:28:01 +0200894 {
895 emsg(_(e_cannot_use_bang_with_nested_def));
896 return NULL;
897 }
898
Bram Moolenaar6abdcf82020-11-22 18:15:44 +0100899 if (*name_start == '/')
900 {
901 name_end = skip_regexp(name_start + 1, '/', TRUE);
902 if (*name_end == '/')
903 ++name_end;
Bram Moolenaar63b91732021-08-05 20:40:03 +0200904 set_nextcmd(eap, name_end);
Bram Moolenaar6abdcf82020-11-22 18:15:44 +0100905 }
906 if (name_end == name_start || *skipwhite(name_end) != '(')
907 {
908 if (!ends_excmd2(name_start, name_end))
909 {
Bram Moolenaardea5ab02022-02-23 22:12:02 +0000910 if (*skipwhite(name_end) == '.')
911 semsg(_(e_cannot_define_dict_func_in_vim9_script_str),
912 eap->cmd);
913 else
914 semsg(_(e_invalid_command_str), eap->cmd);
Bram Moolenaar6abdcf82020-11-22 18:15:44 +0100915 return NULL;
916 }
917
918 // "def" or "def Name": list functions
919 if (generate_DEF(cctx, name_start, name_end - name_start) == FAIL)
920 return NULL;
921 return eap->nextcmd == NULL ? (char_u *)"" : eap->nextcmd;
922 }
923
Bram Moolenaarbcbf4132020-08-01 22:35:13 +0200924 // Only g:Func() can use a namespace.
925 if (name_start[1] == ':' && !is_global)
926 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200927 semsg(_(e_namespace_not_supported_str), name_start);
Bram Moolenaarbcbf4132020-08-01 22:35:13 +0200928 return NULL;
929 }
Bram Moolenaar4f3321f2022-03-13 13:12:27 +0000930 if (cctx->ctx_skip != SKIP_YES
931 && check_defined(name_start, name_end - name_start, cctx,
Bram Moolenaardce24412022-02-08 20:35:30 +0000932 NULL, FALSE) == FAIL)
Bram Moolenaareef21022020-08-01 22:16:43 +0200933 return NULL;
Bram Moolenaarf681cfb2022-02-07 20:30:57 +0000934 if (!ASCII_ISUPPER(is_global ? name_start[2] : name_start[0]))
935 {
Bram Moolenaar3787f262022-02-07 21:54:01 +0000936 semsg(_(e_function_name_must_start_with_capital_str), name_start);
Bram Moolenaarf681cfb2022-02-07 20:30:57 +0000937 return NULL;
938 }
Bram Moolenaareef21022020-08-01 22:16:43 +0200939
Bram Moolenaar04b12692020-05-04 23:24:44 +0200940 eap->arg = name_end;
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +0100941 fill_exarg_from_cctx(eap, cctx);
942
Bram Moolenaar04b12692020-05-04 23:24:44 +0200943 eap->forceit = FALSE;
Bram Moolenaar38453522021-11-28 22:00:12 +0000944 // We use the special <Lamba>99 name, but it's not really a lambda.
Bram Moolenaar58a52f22020-12-22 18:56:55 +0100945 lambda_name = vim_strsave(get_lambda_name());
946 if (lambda_name == NULL)
947 return NULL;
Bram Moolenaar9c23f9b2021-12-26 14:23:22 +0000948
949 // This may free the current line, make a copy of the name.
950 off = is_global ? 2 : 0;
951 func_name = vim_strnsave(name_start + off, name_end - name_start - off);
952 if (func_name == NULL)
953 {
954 r = FAIL;
955 goto theend;
956 }
957
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +0000958 ufunc = define_function(eap, lambda_name, lines_to_free);
Bram Moolenaar822ba242020-05-24 23:00:18 +0200959 if (ufunc == NULL)
Bram Moolenaar58a52f22020-12-22 18:56:55 +0100960 {
961 r = eap->skip ? OK : FAIL;
962 goto theend;
963 }
Bram Moolenaar7473a842021-12-28 17:55:26 +0000964 if (eap->nextcmd != NULL)
965 {
966 semsg(_(e_text_found_after_str_str),
967 eap->cmdidx == CMD_def ? "enddef" : "endfunction", eap->nextcmd);
968 r = FAIL;
Bram Moolenaard2939812021-12-30 17:09:05 +0000969 func_ptr_unref(ufunc);
Bram Moolenaar7473a842021-12-28 17:55:26 +0000970 goto theend;
971 }
Bram Moolenaar8863bda2021-03-17 18:42:08 +0100972
973 // copy over the block scope IDs before compiling
974 if (!is_global && cctx->ctx_ufunc->uf_block_depth > 0)
975 {
976 int block_depth = cctx->ctx_ufunc->uf_block_depth;
977
978 ufunc->uf_block_ids = ALLOC_MULT(int, block_depth);
979 if (ufunc->uf_block_ids != NULL)
980 {
981 mch_memmove(ufunc->uf_block_ids, cctx->ctx_ufunc->uf_block_ids,
982 sizeof(int) * block_depth);
983 ufunc->uf_block_depth = block_depth;
984 }
985 }
986
Bram Moolenaara915fa02022-03-23 11:29:15 +0000987 // Define the funcref before compiling, so that it is found by any
988 // recursive call.
989 if (is_global)
990 {
Bram Moolenaar65449bd2022-09-19 16:02:43 +0100991 r = generate_NEWFUNC(cctx, lambda_name, func_name);
Bram Moolenaara915fa02022-03-23 11:29:15 +0000992 func_name = NULL;
993 lambda_name = NULL;
994 }
995 else
996 {
997 // Define a local variable for the function reference.
Bram Moolenaar1889f492022-08-16 19:34:44 +0100998 lvar = reserve_local(cctx, func_name, name_end - name_start,
Bram Moolenaar6586a012022-09-30 11:04:50 +0100999 ASSIGN_CONST, ufunc->uf_func_type);
Bram Moolenaara915fa02022-03-23 11:29:15 +00001000 if (lvar == NULL)
1001 goto theend;
1002 if (generate_FUNCREF(cctx, ufunc, &funcref_isn) == FAIL)
1003 goto theend;
1004 r = generate_STORE(cctx, ISN_STORE, lvar->lv_idx, NULL);
1005 }
1006
Bram Moolenaar139575d2022-03-15 19:29:30 +00001007 compile_type = get_compile_type(ufunc);
Bram Moolenaarffcfddc2021-07-11 20:22:30 +02001008#ifdef FEAT_PROFILE
1009 // If the outer function is profiled, also compile the nested function for
1010 // profiling.
1011 if (cctx->ctx_compile_type == CT_PROFILE)
1012 compile_type = CT_PROFILE;
1013#endif
1014 if (func_needs_compiling(ufunc, compile_type)
1015 && compile_def_function(ufunc, TRUE, compile_type, cctx) == FAIL)
Bram Moolenaar4ee711f2020-09-23 18:51:11 +02001016 {
1017 func_ptr_unref(ufunc);
Bram Moolenaar1889f492022-08-16 19:34:44 +01001018 if (lvar != NULL)
1019 // Now the local variable can't be used.
1020 *lvar->lv_name = '/'; // impossible value
Bram Moolenaar58a52f22020-12-22 18:56:55 +01001021 goto theend;
Bram Moolenaar4ee711f2020-09-23 18:51:11 +02001022 }
Bram Moolenaar04b12692020-05-04 23:24:44 +02001023
Bram Moolenaar648594e2021-07-11 17:55:01 +02001024#ifdef FEAT_PROFILE
1025 // When the outer function is compiled for profiling, the nested function
1026 // may be called without profiling. Compile it here in the right context.
Bram Moolenaarffcfddc2021-07-11 20:22:30 +02001027 if (compile_type == CT_PROFILE && func_needs_compiling(ufunc, CT_NONE))
Bram Moolenaar648594e2021-07-11 17:55:01 +02001028 compile_def_function(ufunc, FALSE, CT_NONE, cctx);
1029#endif
1030
Bram Moolenaara915fa02022-03-23 11:29:15 +00001031 // If a FUNCREF instruction was generated, set the index after compiling.
1032 if (funcref_isn != NULL && ufunc->uf_def_status == UF_COMPILED)
1033 funcref_isn->isn_arg.funcref.fr_dfunc_idx = ufunc->uf_dfunc_idx;
Bram Moolenaar58a52f22020-12-22 18:56:55 +01001034
1035theend:
1036 vim_free(lambda_name);
Bram Moolenaar9c23f9b2021-12-26 14:23:22 +00001037 vim_free(func_name);
Bram Moolenaar38ddf332020-07-31 22:05:04 +02001038 return r == FAIL ? NULL : (char_u *)"";
Bram Moolenaar04b12692020-05-04 23:24:44 +02001039}
1040
1041/*
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001042 * Compile one Vim expression {expr} in string "p".
1043 * "p" points to the opening "{".
1044 * Return a pointer to the character after "}", NULL for an error.
1045 */
1046 char_u *
1047compile_one_expr_in_str(char_u *p, cctx_T *cctx)
1048{
1049 char_u *block_start;
1050 char_u *block_end;
1051
1052 // Skip the opening {.
1053 block_start = skipwhite(p + 1);
1054 block_end = block_start;
1055 if (*block_start != NUL && skip_expr(&block_end, NULL) == FAIL)
1056 return NULL;
1057 block_end = skipwhite(block_end);
1058 // The block must be closed by a }.
1059 if (*block_end != '}')
1060 {
1061 semsg(_(e_missing_close_curly_str), p);
1062 return NULL;
1063 }
1064 if (compile_expr0(&block_start, cctx) == FAIL)
1065 return NULL;
1066 may_generate_2STRING(-1, TRUE, cctx);
1067
1068 return block_end + 1;
1069}
1070
1071/*
LemonBoy2eaef102022-05-06 13:14:50 +01001072 * Compile a string "str" (either containing a literal string or a mix of
1073 * literal strings and Vim expressions of the form `{expr}`). This is used
1074 * when compiling a heredoc assignment to a variable or an interpolated string
1075 * in a Vim9 def function. Vim9 instructions are generated to push strings,
1076 * evaluate expressions, concatenate them and create a list of lines. When
1077 * "evalstr" is TRUE, Vim expressions in "str" are evaluated.
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001078 */
1079 int
LemonBoy2eaef102022-05-06 13:14:50 +01001080compile_all_expr_in_str(char_u *str, int evalstr, cctx_T *cctx)
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001081{
LemonBoy2eaef102022-05-06 13:14:50 +01001082 char_u *p = str;
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001083 char_u *val;
LemonBoy2eaef102022-05-06 13:14:50 +01001084 int count = 0;
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001085
1086 if (cctx->ctx_skip == SKIP_YES)
1087 return OK;
1088
LemonBoy2eaef102022-05-06 13:14:50 +01001089 if (!evalstr || *str == NUL)
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001090 {
LemonBoy2eaef102022-05-06 13:14:50 +01001091 // Literal string, possibly empty.
1092 val = *str != NUL ? vim_strsave(str) : NULL;
1093 return generate_PUSHS(cctx, &val);
1094 }
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001095
LemonBoy2eaef102022-05-06 13:14:50 +01001096 // Push all the string pieces to the stack, followed by a ISN_CONCAT.
1097 while (*p != NUL)
1098 {
1099 char_u *lit_start;
LemonBoy2eaef102022-05-06 13:14:50 +01001100 int escaped_brace = FALSE;
1101
1102 // Look for a block start.
1103 lit_start = p;
1104 while (*p != '{' && *p != '}' && *p != NUL)
1105 ++p;
1106
1107 if (*p != NUL && *p == p[1])
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001108 {
LemonBoy2eaef102022-05-06 13:14:50 +01001109 // Escaped brace, unescape and continue.
1110 // Include the brace in the literal string.
1111 ++p;
1112 escaped_brace = TRUE;
1113 }
1114 else if (*p == '}')
1115 {
1116 semsg(_(e_stray_closing_curly_str), str);
1117 return FAIL;
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001118 }
LemonBoy372bcce2022-04-25 12:43:20 +01001119
LemonBoy2eaef102022-05-06 13:14:50 +01001120 // Append the literal part.
1121 if (p != lit_start)
1122 {
1123 val = vim_strnsave(lit_start, (size_t)(p - lit_start));
1124 if (generate_PUSHS(cctx, &val) == FAIL)
1125 return FAIL;
1126 ++count;
1127 }
1128
1129 if (*p == NUL)
1130 break;
1131
1132 if (escaped_brace)
1133 {
1134 // Skip the second brace.
1135 ++p;
1136 continue;
1137 }
1138
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001139 p = compile_one_expr_in_str(p, cctx);
1140 if (p == NULL)
LemonBoy2eaef102022-05-06 13:14:50 +01001141 return FAIL;
LemonBoy2eaef102022-05-06 13:14:50 +01001142 ++count;
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001143 }
LemonBoy2eaef102022-05-06 13:14:50 +01001144
1145 // Small optimization, if there's only a single piece skip the ISN_CONCAT.
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001146 if (count > 1)
LemonBoy2eaef102022-05-06 13:14:50 +01001147 return generate_CONCAT(cctx, count);
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01001148
1149 return OK;
1150}
1151
1152/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001153 * Return the length of an assignment operator, or zero if there isn't one.
1154 */
1155 int
1156assignment_len(char_u *p, int *heredoc)
1157{
1158 if (*p == '=')
1159 {
1160 if (p[1] == '<' && p[2] == '<')
1161 {
1162 *heredoc = TRUE;
1163 return 3;
1164 }
1165 return 1;
1166 }
1167 if (vim_strchr((char_u *)"+-*/%", *p) != NULL && p[1] == '=')
1168 return 2;
1169 if (STRNCMP(p, "..=", 3) == 0)
1170 return 3;
1171 return 0;
1172}
1173
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001174/*
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001175 * Generate the load instruction for "name".
1176 */
1177 static void
1178generate_loadvar(
1179 cctx_T *cctx,
1180 assign_dest_T dest,
1181 char_u *name,
1182 lvar_T *lvar,
1183 type_T *type)
1184{
1185 switch (dest)
1186 {
1187 case dest_option:
Bram Moolenaardcb53be2021-12-09 14:23:43 +00001188 case dest_func_option:
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001189 generate_LOAD(cctx, ISN_LOADOPT, 0, name, type);
1190 break;
1191 case dest_global:
Bram Moolenaar03290b82020-12-19 16:30:44 +01001192 if (vim_strchr(name, AUTOLOAD_CHAR) == NULL)
Bram Moolenaar2e17fef2022-03-18 19:44:48 +00001193 {
1194 if (name[2] == NUL)
1195 generate_instr_type(cctx, ISN_LOADGDICT, &t_dict_any);
1196 else
1197 generate_LOAD(cctx, ISN_LOADG, 0, name + 2, type);
1198 }
Bram Moolenaar03290b82020-12-19 16:30:44 +01001199 else
1200 generate_LOAD(cctx, ISN_LOADAUTO, 0, name, type);
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001201 break;
1202 case dest_buffer:
1203 generate_LOAD(cctx, ISN_LOADB, 0, name + 2, type);
1204 break;
1205 case dest_window:
1206 generate_LOAD(cctx, ISN_LOADW, 0, name + 2, type);
1207 break;
1208 case dest_tab:
1209 generate_LOAD(cctx, ISN_LOADT, 0, name + 2, type);
1210 break;
1211 case dest_script:
1212 compile_load_scriptvar(cctx,
Bram Moolenaard0132f42022-05-12 11:05:40 +01001213 name + (name[1] == ':' ? 2 : 0), NULL, NULL);
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001214 break;
1215 case dest_env:
1216 // Include $ in the name here
1217 generate_LOAD(cctx, ISN_LOADENV, 0, name, type);
1218 break;
1219 case dest_reg:
1220 generate_LOAD(cctx, ISN_LOADREG, name[1], NULL, &t_string);
1221 break;
1222 case dest_vimvar:
Bram Moolenaarc3caa7f2022-05-25 19:15:10 +01001223 generate_LOADV(cctx, name + 2);
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001224 break;
1225 case dest_local:
Bram Moolenaar4875d6a2022-08-17 15:55:51 +01001226 if (cctx->ctx_skip != SKIP_YES)
1227 {
1228 if (lvar->lv_from_outer > 0)
1229 generate_LOADOUTER(cctx, lvar->lv_idx, lvar->lv_from_outer,
Bram Moolenaar65449bd2022-09-19 16:02:43 +01001230 lvar->lv_loop_depth, lvar->lv_loop_idx, type);
Bram Moolenaar4875d6a2022-08-17 15:55:51 +01001231 else
1232 generate_LOAD(cctx, ISN_LOAD, lvar->lv_idx, NULL, type);
1233 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001234 break;
Bram Moolenaardc234ca2020-11-28 18:52:33 +01001235 case dest_expr:
1236 // list or dict value should already be on the stack.
1237 break;
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001238 }
1239}
1240
Bram Moolenaardc234ca2020-11-28 18:52:33 +01001241/*
1242 * Skip over "[expr]" or ".member".
1243 * Does not check for any errors.
1244 */
1245 static char_u *
1246skip_index(char_u *start)
1247{
1248 char_u *p = start;
1249
1250 if (*p == '[')
1251 {
1252 p = skipwhite(p + 1);
1253 (void)skip_expr(&p, NULL);
1254 p = skipwhite(p);
1255 if (*p == ']')
1256 return p + 1;
1257 return p;
1258 }
1259 // if (*p == '.')
1260 return to_name_end(p + 1, TRUE);
1261}
1262
Bram Moolenaare55b1c02020-06-21 15:52:59 +02001263 void
1264vim9_declare_error(char_u *name)
1265{
1266 char *scope = "";
1267
1268 switch (*name)
1269 {
Bram Moolenaar7fe87552020-06-21 20:38:28 +02001270 case 'g': scope = _("global"); break;
1271 case 'b': scope = _("buffer"); break;
1272 case 'w': scope = _("window"); break;
1273 case 't': scope = _("tab"); break;
1274 case 'v': scope = "v:"; break;
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02001275 case '$': semsg(_(e_cannot_declare_an_environment_variable), name);
Bram Moolenaarc2ee44c2020-08-02 16:59:00 +02001276 return;
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001277 case '&': semsg(_(e_cannot_declare_an_option), name);
Bram Moolenaarc2ee44c2020-08-02 16:59:00 +02001278 return;
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02001279 case '@': semsg(_(e_cannot_declare_a_register_str), name);
Bram Moolenaarc2ee44c2020-08-02 16:59:00 +02001280 return;
Bram Moolenaar7fe87552020-06-21 20:38:28 +02001281 default: return;
Bram Moolenaare55b1c02020-06-21 15:52:59 +02001282 }
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02001283 semsg(_(e_cannot_declare_a_scope_variable), scope, name);
Bram Moolenaare55b1c02020-06-21 15:52:59 +02001284}
1285
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02001286/*
Bram Moolenaar3558afe2022-10-13 16:12:57 +01001287 * Return TRUE if "name" is a valid register to use.
1288 * Return FALSE and give an error message if not.
1289 */
1290 static int
1291valid_dest_reg(int name)
1292{
1293 if ((name == '@' || valid_yank_reg(name, FALSE)) && name != '.')
1294 return TRUE;
1295 emsg_invreg(name);
1296 return FAIL;
1297}
1298
1299/*
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001300 * For one assignment figure out the type of destination. Return it in "dest".
1301 * When not recognized "dest" is not set.
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001302 * For an option "option_scope" is set.
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001303 * For a v:var "vimvaridx" is set.
1304 * "type" is set to the destination type if known, unchanted otherwise.
1305 * Return FAIL if an error message was given.
1306 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001307 int
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001308get_var_dest(
1309 char_u *name,
1310 assign_dest_T *dest,
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001311 cmdidx_T cmdidx,
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001312 int *option_scope,
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001313 int *vimvaridx,
1314 type_T **type,
1315 cctx_T *cctx)
1316{
1317 char_u *p;
1318
1319 if (*name == '&')
1320 {
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001321 int cc;
1322 long numval;
1323 getoption_T opt_type;
Bram Moolenaardcb53be2021-12-09 14:23:43 +00001324 int opt_p_flags;
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001325
1326 *dest = dest_option;
1327 if (cmdidx == CMD_final || cmdidx == CMD_const)
1328 {
Bram Moolenaard82a47d2022-01-05 20:24:39 +00001329 emsg(_(e_cannot_lock_option));
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001330 return FAIL;
1331 }
1332 p = name;
Yegappan Lakshmanan64095532021-12-06 11:03:55 +00001333 p = find_option_end(&p, option_scope);
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001334 if (p == NULL)
1335 {
1336 // cannot happen?
Bram Moolenaar108010a2021-06-27 22:03:33 +02001337 emsg(_(e_unexpected_characters_in_assignment));
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001338 return FAIL;
1339 }
1340 cc = *p;
1341 *p = NUL;
1342 opt_type = get_option_value(skip_option_env_lead(name),
Bram Moolenaardcb53be2021-12-09 14:23:43 +00001343 &numval, NULL, &opt_p_flags, *option_scope);
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001344 *p = cc;
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001345 switch (opt_type)
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001346 {
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001347 case gov_unknown:
Bram Moolenaare1242042021-12-16 20:56:57 +00001348 semsg(_(e_unknown_option_str), name);
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001349 return FAIL;
1350 case gov_string:
1351 case gov_hidden_string:
Bram Moolenaardcb53be2021-12-09 14:23:43 +00001352 if (opt_p_flags & P_FUNC)
1353 {
1354 // might be a Funcref, check the type later
1355 *type = &t_any;
1356 *dest = dest_func_option;
1357 }
1358 else
1359 {
1360 *type = &t_string;
1361 }
Bram Moolenaardd1f4262020-12-31 17:41:01 +01001362 break;
1363 case gov_bool:
1364 case gov_hidden_bool:
1365 *type = &t_bool;
1366 break;
1367 case gov_number:
1368 case gov_hidden_number:
1369 *type = &t_number;
1370 break;
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001371 }
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001372 }
1373 else if (*name == '$')
1374 {
1375 *dest = dest_env;
1376 *type = &t_string;
1377 }
1378 else if (*name == '@')
1379 {
Bram Moolenaar3558afe2022-10-13 16:12:57 +01001380 if (!valid_dest_reg(name[1]))
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001381 return FAIL;
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001382 *dest = dest_reg;
Bram Moolenaar74f4a962021-06-17 21:03:07 +02001383 *type = name[1] == '#' ? &t_number_or_string : &t_string;
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01001384 }
1385 else if (STRNCMP(name, "g:", 2) == 0)
1386 {
1387 *dest = dest_global;
1388 }
1389 else if (STRNCMP(name, "b:", 2) == 0)
1390 {
1391 *dest = dest_buffer;
1392 }
1393 else if (STRNCMP(name, "w:", 2) == 0)
1394 {
1395 *dest = dest_window;
1396 }
1397 else if (STRNCMP(name, "t:", 2) == 0)
1398 {
1399 *dest = dest_tab;
1400 }
1401 else if (STRNCMP(name, "v:", 2) == 0)
1402 {
1403 typval_T *vtv;
1404 int di_flags;
1405
1406 *vimvaridx = find_vim_var(name + 2, &di_flags);
1407 if (*vimvaridx < 0)
1408 {
1409 semsg(_(e_variable_not_found_str), name);
1410 return FAIL;
1411 }
1412 // We use the current value of "sandbox" here, is that OK?
1413 if (var_check_ro(di_flags, name, FALSE))
1414 return FAIL;
1415 *dest = dest_vimvar;
1416 vtv = get_vim_var_tv(*vimvaridx);
1417 *type = typval2type_vimvar(vtv, cctx->ctx_type_list);
1418 }
1419 return OK;
1420}
1421
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001422 static int
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001423is_decl_command(cmdidx_T cmdidx)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001424{
1425 return cmdidx == CMD_let || cmdidx == CMD_var
1426 || cmdidx == CMD_final || cmdidx == CMD_const;
1427}
1428
1429/*
1430 * Figure out the LHS type and other properties for an assignment or one item
1431 * of ":unlet" with an index.
1432 * Returns OK or FAIL.
1433 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001434 int
Bram Moolenaar752fc692021-01-04 21:57:11 +01001435compile_lhs(
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001436 char_u *var_start,
1437 lhs_T *lhs,
1438 cmdidx_T cmdidx,
1439 int heredoc,
1440 int has_cmd, // "var" before "var_start"
1441 int oplen,
1442 cctx_T *cctx)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001443{
1444 char_u *var_end;
1445 int is_decl = is_decl_command(cmdidx);
1446
1447 CLEAR_POINTER(lhs);
1448 lhs->lhs_dest = dest_local;
1449 lhs->lhs_vimvaridx = -1;
1450 lhs->lhs_scriptvar_idx = -1;
1451
1452 // "dest_end" is the end of the destination, including "[expr]" or
1453 // ".name".
1454 // "var_end" is the end of the variable/option/etc. name.
1455 lhs->lhs_dest_end = skip_var_one(var_start, FALSE);
1456 if (*var_start == '@')
Bram Moolenaar3558afe2022-10-13 16:12:57 +01001457 {
1458 if (!valid_dest_reg(var_start[1]))
1459 return FAIL;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001460 var_end = var_start + 2;
Bram Moolenaar3558afe2022-10-13 16:12:57 +01001461 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01001462 else
1463 {
1464 // skip over the leading "&", "&l:", "&g:" and "$"
1465 var_end = skip_option_env_lead(var_start);
1466 var_end = to_name_end(var_end, TRUE);
1467 }
1468
1469 // "a: type" is declaring variable "a" with a type, not dict "a:".
1470 if (is_decl && lhs->lhs_dest_end == var_start + 2
1471 && lhs->lhs_dest_end[-1] == ':')
1472 --lhs->lhs_dest_end;
1473 if (is_decl && var_end == var_start + 2 && var_end[-1] == ':')
1474 --var_end;
Bram Moolenaarab36e6a2021-11-30 16:14:49 +00001475 lhs->lhs_end = lhs->lhs_dest_end;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001476
1477 // compute the length of the destination without "[expr]" or ".name"
1478 lhs->lhs_varlen = var_end - var_start;
Bram Moolenaar753bcf82021-04-21 14:24:24 +02001479 lhs->lhs_varlen_total = lhs->lhs_varlen;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001480 lhs->lhs_name = vim_strnsave(var_start, lhs->lhs_varlen);
1481 if (lhs->lhs_name == NULL)
1482 return FAIL;
Bram Moolenaar08251752021-01-11 21:20:18 +01001483
1484 if (lhs->lhs_dest_end > var_start + lhs->lhs_varlen)
1485 // Something follows after the variable: "var[idx]" or "var.key".
1486 lhs->lhs_has_index = TRUE;
1487
Bram Moolenaar752fc692021-01-04 21:57:11 +01001488 if (heredoc)
1489 lhs->lhs_type = &t_list_string;
1490 else
1491 lhs->lhs_type = &t_any;
1492
1493 if (cctx->ctx_skip != SKIP_YES)
1494 {
1495 int declare_error = FALSE;
1496
1497 if (get_var_dest(lhs->lhs_name, &lhs->lhs_dest, cmdidx,
1498 &lhs->lhs_opt_flags, &lhs->lhs_vimvaridx,
1499 &lhs->lhs_type, cctx) == FAIL)
1500 return FAIL;
Bram Moolenaard877a572021-04-01 19:42:48 +02001501 if (lhs->lhs_dest != dest_local
1502 && cmdidx != CMD_const && cmdidx != CMD_final)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001503 {
1504 // Specific kind of variable recognized.
1505 declare_error = is_decl;
1506 }
1507 else
1508 {
Bram Moolenaar752fc692021-01-04 21:57:11 +01001509 // No specific kind of variable recognized, just a name.
Bram Moolenaard0edaf92021-05-28 21:06:08 +02001510 if (check_reserved_name(lhs->lhs_name) == FAIL)
1511 return FAIL;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001512
1513 if (lookup_local(var_start, lhs->lhs_varlen,
1514 &lhs->lhs_local_lvar, cctx) == OK)
1515 lhs->lhs_lvar = &lhs->lhs_local_lvar;
1516 else
1517 {
1518 CLEAR_FIELD(lhs->lhs_arg_lvar);
1519 if (arg_exists(var_start, lhs->lhs_varlen,
1520 &lhs->lhs_arg_lvar.lv_idx, &lhs->lhs_arg_lvar.lv_type,
1521 &lhs->lhs_arg_lvar.lv_from_outer, cctx) == OK)
1522 {
1523 if (is_decl)
1524 {
1525 semsg(_(e_str_is_used_as_argument), lhs->lhs_name);
1526 return FAIL;
1527 }
1528 lhs->lhs_lvar = &lhs->lhs_arg_lvar;
1529 }
1530 }
1531 if (lhs->lhs_lvar != NULL)
1532 {
1533 if (is_decl)
1534 {
1535 semsg(_(e_variable_already_declared), lhs->lhs_name);
1536 return FAIL;
1537 }
1538 }
1539 else
1540 {
1541 int script_namespace = lhs->lhs_varlen > 1
1542 && STRNCMP(var_start, "s:", 2) == 0;
1543 int script_var = (script_namespace
1544 ? script_var_exists(var_start + 2, lhs->lhs_varlen - 2,
Bram Moolenaardce24412022-02-08 20:35:30 +00001545 cctx, NULL)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001546 : script_var_exists(var_start, lhs->lhs_varlen,
Bram Moolenaardce24412022-02-08 20:35:30 +00001547 cctx, NULL)) == OK;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001548 imported_T *import =
Bram Moolenaar4b1d9632022-02-13 21:51:08 +00001549 find_imported(var_start, lhs->lhs_varlen, FALSE);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001550
1551 if (script_namespace || script_var || import != NULL)
1552 {
1553 char_u *rawname = lhs->lhs_name
1554 + (lhs->lhs_name[1] == ':' ? 2 : 0);
1555
Bram Moolenaarafa048f2022-02-22 20:43:36 +00001556 if (script_namespace && current_script_is_vim9())
1557 {
1558 semsg(_(e_cannot_use_s_colon_in_vim9_script_str),
1559 var_start);
1560 return FAIL;
1561 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01001562 if (is_decl)
1563 {
1564 if (script_namespace)
Bram Moolenaara749a422022-02-12 19:52:25 +00001565 semsg(_(e_cannot_declare_script_variable_in_function_str),
Bram Moolenaar752fc692021-01-04 21:57:11 +01001566 lhs->lhs_name);
1567 else
Bram Moolenaar057e84a2021-02-28 16:55:11 +01001568 semsg(_(e_variable_already_declared_in_script_str),
Bram Moolenaar752fc692021-01-04 21:57:11 +01001569 lhs->lhs_name);
1570 return FAIL;
1571 }
1572 else if (cctx->ctx_ufunc->uf_script_ctx_version
1573 == SCRIPT_VERSION_VIM9
1574 && script_namespace
1575 && !script_var && import == NULL)
1576 {
1577 semsg(_(e_unknown_variable_str), lhs->lhs_name);
1578 return FAIL;
1579 }
1580
1581 lhs->lhs_dest = dest_script;
1582
1583 // existing script-local variables should have a type
1584 lhs->lhs_scriptvar_sid = current_sctx.sc_sid;
1585 if (import != NULL)
Bram Moolenaard5f400c2022-01-06 21:10:28 +00001586 {
1587 char_u *dot = vim_strchr(var_start, '.');
1588 char_u *p;
1589
1590 // for an import the name is what comes after the dot
1591 if (dot == NULL)
1592 {
1593 semsg(_(e_no_dot_after_imported_name_str),
1594 var_start);
1595 return FAIL;
1596 }
1597 p = skipwhite(dot + 1);
1598 var_end = to_name_end(p, TRUE);
1599 if (var_end == p)
1600 {
1601 semsg(_(e_missing_name_after_imported_name_str),
1602 var_start);
1603 return FAIL;
1604 }
1605 vim_free(lhs->lhs_name);
1606 lhs->lhs_varlen = var_end - p;
1607 lhs->lhs_name = vim_strnsave(p, lhs->lhs_varlen);
1608 if (lhs->lhs_name == NULL)
1609 return FAIL;
1610 rawname = lhs->lhs_name;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001611 lhs->lhs_scriptvar_sid = import->imp_sid;
Bram Moolenaard5f400c2022-01-06 21:10:28 +00001612 // TODO: where do we check this name is exported?
1613
1614 // Check if something follows: "exp.var[idx]" or
1615 // "exp.var.key".
1616 lhs->lhs_has_index = lhs->lhs_dest_end
1617 > skipwhite(var_end);
1618 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01001619 if (SCRIPT_ID_VALID(lhs->lhs_scriptvar_sid))
1620 {
Bram Moolenaar08251752021-01-11 21:20:18 +01001621 // Check writable only when no index follows.
Bram Moolenaar752fc692021-01-04 21:57:11 +01001622 lhs->lhs_scriptvar_idx = get_script_item_idx(
Bram Moolenaar08251752021-01-11 21:20:18 +01001623 lhs->lhs_scriptvar_sid, rawname,
1624 lhs->lhs_has_index ? ASSIGN_FINAL : ASSIGN_CONST,
Bram Moolenaarb6a138e2022-02-08 21:17:22 +00001625 cctx, NULL);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001626 if (lhs->lhs_scriptvar_idx >= 0)
1627 {
1628 scriptitem_T *si = SCRIPT_ITEM(
1629 lhs->lhs_scriptvar_sid);
1630 svar_T *sv =
1631 ((svar_T *)si->sn_var_vals.ga_data)
1632 + lhs->lhs_scriptvar_idx;
1633 lhs->lhs_type = sv->sv_type;
1634 }
1635 }
1636 }
Bram Moolenaardce24412022-02-08 20:35:30 +00001637 else if (check_defined(var_start, lhs->lhs_varlen, cctx,
1638 NULL, FALSE) == FAIL)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001639 return FAIL;
1640 }
1641 }
1642
1643 if (declare_error)
1644 {
1645 vim9_declare_error(lhs->lhs_name);
1646 return FAIL;
1647 }
1648 }
1649
Bram Moolenaarab36e6a2021-11-30 16:14:49 +00001650 // handle "a:name" as a name, not index "name" in "a"
Bram Moolenaar752fc692021-01-04 21:57:11 +01001651 if (lhs->lhs_varlen > 1 || var_start[lhs->lhs_varlen] != ':')
1652 var_end = lhs->lhs_dest_end;
1653
Bram Moolenaardcb53be2021-12-09 14:23:43 +00001654 if (lhs->lhs_dest != dest_option && lhs->lhs_dest != dest_func_option)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001655 {
1656 if (is_decl && *var_end == ':')
1657 {
1658 char_u *p;
1659
1660 // parse optional type: "let var: type = expr"
1661 if (!VIM_ISWHITE(var_end[1]))
1662 {
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01001663 semsg(_(e_white_space_required_after_str_str), ":", var_end);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001664 return FAIL;
1665 }
1666 p = skipwhite(var_end + 1);
1667 lhs->lhs_type = parse_type(&p, cctx->ctx_type_list, TRUE);
1668 if (lhs->lhs_type == NULL)
1669 return FAIL;
1670 lhs->lhs_has_type = TRUE;
Bram Moolenaarab36e6a2021-11-30 16:14:49 +00001671 lhs->lhs_end = p;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001672 }
1673 else if (lhs->lhs_lvar != NULL)
1674 lhs->lhs_type = lhs->lhs_lvar->lv_type;
1675 }
1676
Bram Moolenaare42939a2021-04-05 17:11:17 +02001677 if (oplen == 3 && !heredoc
1678 && lhs->lhs_dest != dest_global
1679 && !lhs->lhs_has_index
1680 && lhs->lhs_type->tt_type != VAR_STRING
1681 && lhs->lhs_type->tt_type != VAR_ANY)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001682 {
1683 emsg(_(e_can_only_concatenate_to_string));
1684 return FAIL;
1685 }
1686
1687 if (lhs->lhs_lvar == NULL && lhs->lhs_dest == dest_local
1688 && cctx->ctx_skip != SKIP_YES)
1689 {
1690 if (oplen > 1 && !heredoc)
1691 {
1692 // +=, /=, etc. require an existing variable
1693 semsg(_(e_cannot_use_operator_on_new_variable), lhs->lhs_name);
1694 return FAIL;
1695 }
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001696 if (!is_decl || (lhs->lhs_has_index && !has_cmd
1697 && cctx->ctx_skip != SKIP_YES))
Bram Moolenaar752fc692021-01-04 21:57:11 +01001698 {
1699 semsg(_(e_unknown_variable_str), lhs->lhs_name);
1700 return FAIL;
1701 }
1702
Bram Moolenaar3f327882021-03-17 20:56:38 +01001703 // Check the name is valid for a funcref.
Bram Moolenaar752fc692021-01-04 21:57:11 +01001704 if ((lhs->lhs_type->tt_type == VAR_FUNC
1705 || lhs->lhs_type->tt_type == VAR_PARTIAL)
Bram Moolenaar3f327882021-03-17 20:56:38 +01001706 && var_wrong_func_name(lhs->lhs_name, TRUE))
Bram Moolenaar752fc692021-01-04 21:57:11 +01001707 return FAIL;
Bram Moolenaar3f327882021-03-17 20:56:38 +01001708
1709 // New local variable.
Bram Moolenaar6586a012022-09-30 11:04:50 +01001710 int assign = cmdidx == CMD_final ? ASSIGN_FINAL
1711 : cmdidx == CMD_const ? ASSIGN_CONST : ASSIGN_VAR;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001712 lhs->lhs_lvar = reserve_local(cctx, var_start, lhs->lhs_varlen,
Bram Moolenaar6586a012022-09-30 11:04:50 +01001713 assign, lhs->lhs_type);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001714 if (lhs->lhs_lvar == NULL)
1715 return FAIL;
1716 lhs->lhs_new_local = TRUE;
1717 }
1718
1719 lhs->lhs_member_type = lhs->lhs_type;
Bram Moolenaar08251752021-01-11 21:20:18 +01001720 if (lhs->lhs_has_index)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001721 {
Bram Moolenaarc750d912021-11-29 22:02:12 +00001722 char_u *after = var_start + lhs->lhs_varlen;
1723 char_u *p;
1724
Bram Moolenaar752fc692021-01-04 21:57:11 +01001725 // Something follows after the variable: "var[idx]" or "var.key".
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001726 if (is_decl && cctx->ctx_skip != SKIP_YES)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001727 {
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001728 if (has_cmd)
1729 emsg(_(e_cannot_use_index_when_declaring_variable));
1730 else
1731 semsg(_(e_unknown_variable_str), lhs->lhs_name);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001732 return FAIL;
1733 }
1734
Bram Moolenaarc750d912021-11-29 22:02:12 +00001735 // Now: var_start[lhs->lhs_varlen] is '[' or '.'
1736 // Only the last index is used below, if there are others
1737 // before it generate code for the expression. Thus for
1738 // "ll[1][2]" the expression is "ll[1]" and "[2]" is the index.
1739 for (;;)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001740 {
Bram Moolenaarc750d912021-11-29 22:02:12 +00001741 p = skip_index(after);
1742 if (*p != '[' && *p != '.')
Bram Moolenaar752fc692021-01-04 21:57:11 +01001743 {
Bram Moolenaarc750d912021-11-29 22:02:12 +00001744 lhs->lhs_varlen_total = p - var_start;
1745 break;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001746 }
Bram Moolenaarc750d912021-11-29 22:02:12 +00001747 after = p;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001748 }
Bram Moolenaarc750d912021-11-29 22:02:12 +00001749 if (after > var_start + lhs->lhs_varlen)
1750 {
1751 lhs->lhs_varlen = after - var_start;
1752 lhs->lhs_dest = dest_expr;
1753 // We don't know the type before evaluating the expression,
1754 // use "any" until then.
1755 lhs->lhs_type = &t_any;
1756 }
1757
1758 if (lhs->lhs_type->tt_member == NULL)
1759 lhs->lhs_member_type = &t_any;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001760 else
Bram Moolenaarc750d912021-11-29 22:02:12 +00001761 lhs->lhs_member_type = lhs->lhs_type->tt_member;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001762 }
1763 return OK;
1764}
1765
1766/*
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001767 * Figure out the LHS and check a few errors.
1768 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001769 int
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001770compile_assign_lhs(
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001771 char_u *var_start,
1772 lhs_T *lhs,
1773 cmdidx_T cmdidx,
1774 int is_decl,
1775 int heredoc,
1776 int has_cmd, // "var" before "var_start"
1777 int oplen,
1778 cctx_T *cctx)
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001779{
Bram Moolenaar97f8c102022-04-02 19:43:57 +01001780 if (compile_lhs(var_start, lhs, cmdidx, heredoc, has_cmd, oplen, cctx)
1781 == FAIL)
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001782 return FAIL;
1783
1784 if (!lhs->lhs_has_index && lhs->lhs_lvar == &lhs->lhs_arg_lvar)
1785 {
1786 semsg(_(e_cannot_assign_to_argument), lhs->lhs_name);
1787 return FAIL;
1788 }
1789 if (!is_decl && lhs->lhs_lvar != NULL
Bram Moolenaar6586a012022-09-30 11:04:50 +01001790 && lhs->lhs_lvar->lv_const != ASSIGN_VAR
1791 && !lhs->lhs_has_index)
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02001792 {
1793 semsg(_(e_cannot_assign_to_constant), lhs->lhs_name);
1794 return FAIL;
1795 }
1796 return OK;
1797}
1798
1799/*
Bram Moolenaar4f0884d2021-08-11 21:49:23 +02001800 * Return TRUE if "lhs" has a range index: "[expr : expr]".
1801 */
1802 static int
1803has_list_index(char_u *idx_start, cctx_T *cctx)
1804{
1805 char_u *p = idx_start;
1806 int save_skip;
1807
1808 if (*p != '[')
1809 return FALSE;
1810
1811 p = skipwhite(p + 1);
1812 if (*p == ':')
1813 return TRUE;
1814
1815 save_skip = cctx->ctx_skip;
1816 cctx->ctx_skip = SKIP_YES;
1817 (void)compile_expr0(&p, cctx);
1818 cctx->ctx_skip = save_skip;
1819 return *skipwhite(p) == ':';
1820}
1821
1822/*
Bram Moolenaare42939a2021-04-05 17:11:17 +02001823 * For an assignment with an index, compile the "idx" in "var[idx]" or "key" in
1824 * "var.key".
Bram Moolenaar752fc692021-01-04 21:57:11 +01001825 */
1826 static int
Bram Moolenaare42939a2021-04-05 17:11:17 +02001827compile_assign_index(
Bram Moolenaar752fc692021-01-04 21:57:11 +01001828 char_u *var_start,
1829 lhs_T *lhs,
Bram Moolenaare42939a2021-04-05 17:11:17 +02001830 int *range,
Bram Moolenaar752fc692021-01-04 21:57:11 +01001831 cctx_T *cctx)
1832{
Bram Moolenaar752fc692021-01-04 21:57:11 +01001833 size_t varlen = lhs->lhs_varlen;
Bram Moolenaare42939a2021-04-05 17:11:17 +02001834 char_u *p;
1835 int r = OK;
Bram Moolenaar68452172021-04-12 21:21:02 +02001836 int need_white_before = TRUE;
1837 int empty_second;
Bram Moolenaar752fc692021-01-04 21:57:11 +01001838
Bram Moolenaar752fc692021-01-04 21:57:11 +01001839 p = var_start + varlen;
1840 if (*p == '[')
1841 {
1842 p = skipwhite(p + 1);
Bram Moolenaar68452172021-04-12 21:21:02 +02001843 if (*p == ':')
1844 {
1845 // empty first index, push zero
1846 r = generate_PUSHNR(cctx, 0);
1847 need_white_before = FALSE;
1848 }
1849 else
1850 r = compile_expr0(&p, cctx);
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01001851
1852 if (r == OK && *skipwhite(p) == ':')
1853 {
1854 // unlet var[idx : idx]
Bram Moolenaar68452172021-04-12 21:21:02 +02001855 // blob[idx : idx] = value
Bram Moolenaare42939a2021-04-05 17:11:17 +02001856 *range = TRUE;
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01001857 p = skipwhite(p);
Bram Moolenaar68452172021-04-12 21:21:02 +02001858 empty_second = *skipwhite(p + 1) == ']';
1859 if ((need_white_before && !IS_WHITE_OR_NUL(p[-1]))
1860 || (!empty_second && !IS_WHITE_OR_NUL(p[1])))
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01001861 {
1862 semsg(_(e_white_space_required_before_and_after_str_at_str),
1863 ":", p);
1864 return FAIL;
1865 }
1866 p = skipwhite(p + 1);
Bram Moolenaar68452172021-04-12 21:21:02 +02001867 if (*p == ']')
1868 // empty second index, push "none"
1869 r = generate_PUSHSPEC(cctx, VVAL_NONE);
1870 else
1871 r = compile_expr0(&p, cctx);
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01001872 }
1873
Bram Moolenaar752fc692021-01-04 21:57:11 +01001874 if (r == OK && *skipwhite(p) != ']')
1875 {
1876 // this should not happen
Bram Moolenaare1242042021-12-16 20:56:57 +00001877 emsg(_(e_missing_closing_square_brace));
Bram Moolenaar752fc692021-01-04 21:57:11 +01001878 r = FAIL;
1879 }
1880 }
1881 else // if (*p == '.')
1882 {
1883 char_u *key_end = to_name_end(p + 1, TRUE);
1884 char_u *key = vim_strnsave(p + 1, key_end - p - 1);
1885
Zdenek Dohnal9fe17d42021-08-04 22:30:52 +02001886 r = generate_PUSHS(cctx, &key);
Bram Moolenaar752fc692021-01-04 21:57:11 +01001887 }
Bram Moolenaare42939a2021-04-05 17:11:17 +02001888 return r;
1889}
1890
1891/*
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001892 * For a LHS with an index, load the variable to be indexed.
1893 */
1894 static int
1895compile_load_lhs(
1896 lhs_T *lhs,
1897 char_u *var_start,
1898 type_T *rhs_type,
1899 cctx_T *cctx)
1900{
1901 if (lhs->lhs_dest == dest_expr)
1902 {
1903 size_t varlen = lhs->lhs_varlen;
1904 int c = var_start[varlen];
Bram Moolenaare97976b2021-08-01 13:17:17 +02001905 int lines_len = cctx->ctx_ufunc->uf_lines.ga_len;
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001906 char_u *p = var_start;
Bram Moolenaare97976b2021-08-01 13:17:17 +02001907 int res;
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001908
Bram Moolenaare97976b2021-08-01 13:17:17 +02001909 // Evaluate "ll[expr]" of "ll[expr][idx]". End the line with a NUL and
1910 // limit the lines array length to avoid skipping to a following line.
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001911 var_start[varlen] = NUL;
Bram Moolenaare97976b2021-08-01 13:17:17 +02001912 cctx->ctx_ufunc->uf_lines.ga_len = cctx->ctx_lnum + 1;
1913 res = compile_expr0(&p, cctx);
1914 var_start[varlen] = c;
1915 cctx->ctx_ufunc->uf_lines.ga_len = lines_len;
1916 if (res == FAIL || p != var_start + varlen)
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001917 {
1918 // this should not happen
Bram Moolenaare97976b2021-08-01 13:17:17 +02001919 if (res != FAIL)
Bram Moolenaare1242042021-12-16 20:56:57 +00001920 emsg(_(e_missing_closing_square_brace));
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001921 return FAIL;
1922 }
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001923
Bram Moolenaar078a4612022-01-04 15:17:03 +00001924 lhs->lhs_type = cctx->ctx_type_stack.ga_len == 0 ? &t_void
1925 : get_type_on_stack(cctx, 0);
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02001926 // now we can properly check the type
1927 if (rhs_type != NULL && lhs->lhs_type->tt_member != NULL
1928 && rhs_type != &t_void
1929 && need_type(rhs_type, lhs->lhs_type->tt_member, -2, 0, cctx,
1930 FALSE, FALSE) == FAIL)
1931 return FAIL;
1932 }
1933 else
1934 generate_loadvar(cctx, lhs->lhs_dest, lhs->lhs_name,
1935 lhs->lhs_lvar, lhs->lhs_type);
1936 return OK;
1937}
1938
1939/*
Bram Moolenaara369c3d2021-04-21 16:00:10 +02001940 * Produce code for loading "lhs" and also take care of an index.
1941 * Return OK/FAIL.
1942 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001943 int
Bram Moolenaara369c3d2021-04-21 16:00:10 +02001944compile_load_lhs_with_index(lhs_T *lhs, char_u *var_start, cctx_T *cctx)
1945{
1946 compile_load_lhs(lhs, var_start, NULL, cctx);
1947
1948 if (lhs->lhs_has_index)
1949 {
1950 int range = FALSE;
1951
1952 // Get member from list or dict. First compile the
1953 // index value.
1954 if (compile_assign_index(var_start, lhs, &range, cctx) == FAIL)
1955 return FAIL;
1956 if (range)
1957 {
1958 semsg(_(e_cannot_use_range_with_assignment_operator_str),
1959 var_start);
1960 return FAIL;
1961 }
1962
1963 // Get the member.
Bram Moolenaarb1b6f4d2021-09-13 18:25:54 +02001964 if (compile_member(FALSE, NULL, cctx) == FAIL)
Bram Moolenaara369c3d2021-04-21 16:00:10 +02001965 return FAIL;
1966 }
1967 return OK;
1968}
1969
1970/*
Bram Moolenaare42939a2021-04-05 17:11:17 +02001971 * Assignment to a list or dict member, or ":unlet" for the item, using the
1972 * information in "lhs".
1973 * Returns OK or FAIL.
1974 */
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001975 int
Bram Moolenaare42939a2021-04-05 17:11:17 +02001976compile_assign_unlet(
1977 char_u *var_start,
1978 lhs_T *lhs,
1979 int is_assign,
1980 type_T *rhs_type,
1981 cctx_T *cctx)
1982{
Bram Moolenaare42939a2021-04-05 17:11:17 +02001983 vartype_T dest_type;
Bram Moolenaare42939a2021-04-05 17:11:17 +02001984 int range = FALSE;
1985
Bram Moolenaar68452172021-04-12 21:21:02 +02001986 if (compile_assign_index(var_start, lhs, &range, cctx) == FAIL)
Bram Moolenaar752fc692021-01-04 21:57:11 +01001987 return FAIL;
Bram Moolenaar4f0884d2021-08-11 21:49:23 +02001988 if (is_assign && range
1989 && lhs->lhs_type->tt_type != VAR_LIST
1990 && lhs->lhs_type != &t_blob
1991 && lhs->lhs_type != &t_any)
Bram Moolenaar68452172021-04-12 21:21:02 +02001992 {
1993 semsg(_(e_cannot_use_range_with_assignment_str), var_start);
1994 return FAIL;
1995 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01001996
1997 if (lhs->lhs_type == &t_any)
1998 {
1999 // Index on variable of unknown type: check at runtime.
2000 dest_type = VAR_ANY;
2001 }
2002 else
2003 {
2004 dest_type = lhs->lhs_type->tt_type;
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002005 if (dest_type == VAR_DICT && range)
2006 {
2007 emsg(e_cannot_use_range_with_dictionary);
2008 return FAIL;
2009 }
Bram Moolenaar5fa9b242021-06-04 21:00:32 +02002010 if (dest_type == VAR_DICT
2011 && may_generate_2STRING(-1, FALSE, cctx) == FAIL)
Bram Moolenaar752fc692021-01-04 21:57:11 +01002012 return FAIL;
Bram Moolenaar51e93322021-04-17 20:44:56 +02002013 if (dest_type == VAR_LIST || dest_type == VAR_BLOB)
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002014 {
Bram Moolenaar51e93322021-04-17 20:44:56 +02002015 type_T *type;
2016
2017 if (range)
2018 {
Bram Moolenaar078a4612022-01-04 15:17:03 +00002019 type = get_type_on_stack(cctx, 1);
Bram Moolenaar51e93322021-04-17 20:44:56 +02002020 if (need_type(type, &t_number,
Bram Moolenaar2995e5c2022-03-18 21:41:47 +00002021 -2, 0, cctx, FALSE, FALSE) == FAIL)
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002022 return FAIL;
Bram Moolenaar51e93322021-04-17 20:44:56 +02002023 }
Bram Moolenaar078a4612022-01-04 15:17:03 +00002024 type = get_type_on_stack(cctx, 0);
Bram Moolenaar53ba6ca2022-03-10 19:23:28 +00002025 if ((dest_type != VAR_BLOB && type->tt_type != VAR_SPECIAL)
Bram Moolenaar51e93322021-04-17 20:44:56 +02002026 && need_type(type, &t_number,
2027 -1, 0, cctx, FALSE, FALSE) == FAIL)
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002028 return FAIL;
2029 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01002030 }
2031
Bram Moolenaar4875d6a2022-08-17 15:55:51 +01002032 if (cctx->ctx_skip == SKIP_YES)
2033 return OK;
2034
Bram Moolenaar752fc692021-01-04 21:57:11 +01002035 // Load the dict or list. On the stack we then have:
2036 // - value (for assignment, not for :unlet)
2037 // - index
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002038 // - for [a : b] second index
Bram Moolenaar752fc692021-01-04 21:57:11 +01002039 // - variable
Bram Moolenaarb9c0cd82021-04-05 20:51:00 +02002040 if (compile_load_lhs(lhs, var_start, rhs_type, cctx) == FAIL)
2041 return FAIL;
Bram Moolenaar752fc692021-01-04 21:57:11 +01002042
Bram Moolenaar68452172021-04-12 21:21:02 +02002043 if (dest_type == VAR_LIST || dest_type == VAR_DICT
2044 || dest_type == VAR_BLOB || dest_type == VAR_ANY)
Bram Moolenaar752fc692021-01-04 21:57:11 +01002045 {
2046 if (is_assign)
2047 {
Bram Moolenaar68452172021-04-12 21:21:02 +02002048 if (range)
2049 {
2050 if (generate_instr_drop(cctx, ISN_STORERANGE, 4) == NULL)
2051 return FAIL;
2052 }
2053 else
2054 {
2055 isn_T *isn = generate_instr_drop(cctx, ISN_STOREINDEX, 3);
Bram Moolenaar752fc692021-01-04 21:57:11 +01002056
Bram Moolenaar68452172021-04-12 21:21:02 +02002057 if (isn == NULL)
2058 return FAIL;
2059 isn->isn_arg.vartype = dest_type;
2060 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01002061 }
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002062 else if (range)
2063 {
2064 if (generate_instr_drop(cctx, ISN_UNLETRANGE, 3) == NULL)
2065 return FAIL;
2066 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01002067 else
2068 {
2069 if (generate_instr_drop(cctx, ISN_UNLETINDEX, 2) == NULL)
2070 return FAIL;
2071 }
2072 }
2073 else
2074 {
2075 emsg(_(e_indexable_type_required));
2076 return FAIL;
2077 }
2078
2079 return OK;
2080}
2081
Bram Moolenaar4b8a0652020-12-01 16:30:44 +01002082/*
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002083 * Compile declaration and assignment:
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002084 * "let name"
2085 * "var name = expr"
2086 * "final name = expr"
2087 * "const name = expr"
2088 * "name = expr"
2089 * "arg" points to "name".
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002090 * "++arg" and "--arg"
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002091 * Return NULL for an error.
2092 * Return "arg" if it does not look like a variable list.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002093 */
2094 static char_u *
2095compile_assignment(char_u *arg, exarg_T *eap, cmdidx_T cmdidx, cctx_T *cctx)
2096{
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002097 char_u *var_start;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002098 char_u *p;
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002099 char_u *end = arg;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002100 char_u *ret = NULL;
2101 int var_count = 0;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002102 int var_idx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002103 int semicolon = 0;
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002104 int did_generate_slice = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002105 garray_T *instr = &cctx->ctx_instr;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002106 char_u *op;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002107 int oplen = 0;
2108 int heredoc = FALSE;
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002109 int incdec = FALSE;
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002110 type_T *rhs_type = &t_any;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002111 char_u *sp;
Bram Moolenaar752fc692021-01-04 21:57:11 +01002112 int is_decl = is_decl_command(cmdidx);
2113 lhs_T lhs;
Bram Moolenaar77709b12021-04-03 21:01:01 +02002114 long start_lnum = SOURCING_LNUM;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002115
Bram Moolenaare1d12112022-03-05 11:37:48 +00002116 // Skip over the "varname" or "[varname, varname]" to get to any "=".
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002117 p = skip_var_list(arg, TRUE, &var_count, &semicolon, TRUE);
2118 if (p == NULL)
2119 return *arg == '[' ? arg : NULL;
2120
Bram Moolenaar752fc692021-01-04 21:57:11 +01002121 lhs.lhs_name = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002122
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002123 if (eap->cmdidx == CMD_increment || eap->cmdidx == CMD_decrement)
2124 {
Bram Moolenaar22480d12021-06-25 21:31:09 +02002125 if (VIM_ISWHITE(eap->cmd[2]))
2126 {
2127 semsg(_(e_no_white_space_allowed_after_str_str),
2128 eap->cmdidx == CMD_increment ? "++" : "--", eap->cmd);
2129 return NULL;
2130 }
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002131 op = (char_u *)(eap->cmdidx == CMD_increment ? "+=" : "-=");
2132 oplen = 2;
2133 incdec = TRUE;
2134 }
Bram Moolenaar70d87692022-05-07 10:03:27 +01002135 else
2136 {
2137 sp = p;
2138 p = skipwhite(p);
2139 op = p;
2140 oplen = assignment_len(p, &heredoc);
2141
2142 if (var_count > 0 && oplen == 0)
2143 // can be something like "[1, 2]->func()"
2144 return arg;
2145
2146 if (oplen > 0 && (!VIM_ISWHITE(*sp) || !IS_WHITE_OR_NUL(op[oplen])))
2147 {
2148 error_white_both(op, oplen);
2149 return NULL;
2150 }
2151 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002152
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002153 if (heredoc)
2154 {
2155 list_T *l;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002156
2157 // [let] varname =<< [trim] {end}
Bram Moolenaar04b12692020-05-04 23:24:44 +02002158 eap->getline = exarg_getline;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002159 eap->cookie = cctx;
Yegappan Lakshmanan1fc6ea92022-04-21 23:30:15 +01002160 l = heredoc_get(eap, op + 3, FALSE, TRUE);
Bram Moolenaarc0e29012020-09-27 14:22:48 +02002161 if (l == NULL)
2162 return NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002163
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002164 list_free(l);
2165 p += STRLEN(p);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002166 end = p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002167 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002168 else if (var_count > 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002169 {
Bram Moolenaar004d9b02020-11-30 21:40:03 +01002170 char_u *wp;
2171
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002172 // for "[var, var] = expr" evaluate the expression here, loop over the
2173 // list of variables below.
Bram Moolenaar004d9b02020-11-30 21:40:03 +01002174 // A line break may follow the "=".
Bram Moolenaard25ec2c2020-03-30 21:05:45 +02002175
Bram Moolenaar004d9b02020-11-30 21:40:03 +01002176 wp = op + oplen;
Bram Moolenaar8ff16e02020-12-07 21:49:52 +01002177 if (may_get_next_line_error(wp, &p, cctx) == FAIL)
Bram Moolenaar004d9b02020-11-30 21:40:03 +01002178 return FAIL;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002179 if (compile_expr0(&p, cctx) == FAIL)
2180 return NULL;
2181 end = p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002182
Bram Moolenaar9b68c822020-06-18 19:31:08 +02002183 if (cctx->ctx_skip != SKIP_YES)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002184 {
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002185 type_T *stacktype;
Bram Moolenaardb9ff9a2021-12-01 17:38:01 +00002186 int needed_list_len;
2187 int did_check = FALSE;
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002188
Bram Moolenaar078a4612022-01-04 15:17:03 +00002189 stacktype = cctx->ctx_type_stack.ga_len == 0 ? &t_void
2190 : get_type_on_stack(cctx, 0);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002191 if (stacktype->tt_type == VAR_VOID)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002192 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002193 emsg(_(e_cannot_use_void_value));
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002194 goto theend;
2195 }
Bram Moolenaar351ead02021-01-16 16:07:01 +01002196 if (need_type(stacktype, &t_list_any, -1, 0, cctx,
Bram Moolenaar334a8b42020-10-19 16:07:42 +02002197 FALSE, FALSE) == FAIL)
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002198 goto theend;
Bram Moolenaardb9ff9a2021-12-01 17:38:01 +00002199 // If a constant list was used we can check the length right here.
2200 needed_list_len = semicolon ? var_count - 1 : var_count;
2201 if (instr->ga_len > 0)
2202 {
2203 isn_T *isn = ((isn_T *)instr->ga_data) + instr->ga_len - 1;
2204
2205 if (isn->isn_type == ISN_NEWLIST)
2206 {
2207 did_check = TRUE;
2208 if (semicolon ? isn->isn_arg.number < needed_list_len
2209 : isn->isn_arg.number != needed_list_len)
2210 {
2211 semsg(_(e_expected_nr_items_but_got_nr),
Bram Moolenaarf60a6342022-01-15 14:16:37 +00002212 needed_list_len, (int)isn->isn_arg.number);
Bram Moolenaardb9ff9a2021-12-01 17:38:01 +00002213 goto theend;
2214 }
2215 }
2216 }
2217 if (!did_check)
2218 generate_CHECKLEN(cctx, needed_list_len, semicolon);
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002219 if (stacktype->tt_member != NULL)
2220 rhs_type = stacktype->tt_member;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002221 }
2222 }
2223
2224 /*
2225 * Loop over variables in "[var, var] = expr".
2226 * For "var = expr" and "let var: type" this is done only once.
2227 */
2228 if (var_count > 0)
2229 var_start = skipwhite(arg + 1); // skip over the "["
2230 else
2231 var_start = arg;
2232 for (var_idx = 0; var_idx == 0 || var_idx < var_count; var_idx++)
2233 {
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002234 int instr_count = -1;
2235 int save_lnum;
Bram Moolenaar5cd64792021-12-25 18:23:24 +00002236 int skip_store = FALSE;
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002237 type_T *inferred_type = NULL;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002238
Bram Moolenaarf93bbd02021-04-10 22:35:43 +02002239 if (var_start[0] == '_' && !eval_isnamec(var_start[1]))
2240 {
2241 // Ignore underscore in "[a, _, b] = list".
2242 if (var_count > 0)
2243 {
2244 var_start = skipwhite(var_start + 2);
2245 continue;
2246 }
2247 emsg(_(e_cannot_use_underscore_here));
2248 goto theend;
2249 }
Bram Moolenaar752fc692021-01-04 21:57:11 +01002250 vim_free(lhs.lhs_name);
2251
2252 /*
2253 * Figure out the LHS type and other properties.
2254 */
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02002255 if (compile_assign_lhs(var_start, &lhs, cmdidx,
Bram Moolenaar97f8c102022-04-02 19:43:57 +01002256 is_decl, heredoc, var_start > eap->cmd,
2257 oplen, cctx) == FAIL)
Bram Moolenaar752fc692021-01-04 21:57:11 +01002258 goto theend;
Bram Moolenaar81530e32021-07-28 21:25:49 +02002259 if (heredoc)
2260 {
2261 SOURCING_LNUM = start_lnum;
2262 if (lhs.lhs_has_type
2263 && need_type(&t_list_string, lhs.lhs_type,
2264 -1, 0, cctx, FALSE, FALSE) == FAIL)
2265 goto theend;
2266 }
2267 else
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002268 {
Bram Moolenaar9b68c822020-06-18 19:31:08 +02002269 if (cctx->ctx_skip == SKIP_YES)
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002270 {
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002271 if (oplen > 0 && var_count == 0)
2272 {
2273 // skip over the "=" and the expression
2274 p = skipwhite(op + oplen);
Bram Moolenaar169502f2021-04-21 12:19:35 +02002275 (void)compile_expr0(&p, cctx);
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002276 }
2277 }
2278 else if (oplen > 0)
2279 {
Bram Moolenaar334a8b42020-10-19 16:07:42 +02002280 int is_const = FALSE;
Bram Moolenaar7f764942020-12-02 15:11:18 +01002281 char_u *wp;
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002282
Bram Moolenaar035bd1c2021-06-21 19:44:11 +02002283 // for "+=", "*=", "..=" etc. first load the current value
2284 if (*op != '='
2285 && compile_load_lhs_with_index(&lhs, var_start,
2286 cctx) == FAIL)
2287 goto theend;
2288
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002289 // For "var = expr" evaluate the expression.
2290 if (var_count == 0)
2291 {
2292 int r;
2293
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002294 // Compile the expression.
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002295 instr_count = instr->ga_len;
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002296 if (incdec)
Bram Moolenaar21e51222020-12-04 12:43:29 +01002297 {
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02002298 r = generate_PUSHNR(cctx, 1);
2299 }
2300 else
2301 {
2302 // Temporarily hide the new local variable here, it is
2303 // not available to this expression.
2304 if (lhs.lhs_new_local)
2305 --cctx->ctx_locals.ga_len;
2306 wp = op + oplen;
2307 if (may_get_next_line_error(wp, &p, cctx) == FAIL)
2308 {
2309 if (lhs.lhs_new_local)
2310 ++cctx->ctx_locals.ga_len;
2311 goto theend;
2312 }
2313 r = compile_expr0_ext(&p, cctx, &is_const);
Bram Moolenaar752fc692021-01-04 21:57:11 +01002314 if (lhs.lhs_new_local)
Bram Moolenaar21e51222020-12-04 12:43:29 +01002315 ++cctx->ctx_locals.ga_len;
Bram Moolenaar21e51222020-12-04 12:43:29 +01002316 }
Yegappan Lakshmananc99e1822022-09-03 10:52:24 +01002317 if (r == FAIL)
2318 goto theend;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002319 }
Bram Moolenaar9af78762020-06-16 11:34:42 +02002320 else if (semicolon && var_idx == var_count - 1)
2321 {
2322 // For "[var; var] = expr" get the rest of the list
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002323 did_generate_slice = TRUE;
Bram Moolenaar9af78762020-06-16 11:34:42 +02002324 if (generate_SLICE(cctx, var_count - 1) == FAIL)
2325 goto theend;
2326 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002327 else
2328 {
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002329 // For "[var, var] = expr" get the "var_idx" item from the
2330 // list.
Bram Moolenaar035bd1c2021-06-21 19:44:11 +02002331 if (generate_GETITEM(cctx, var_idx, *op != '=') == FAIL)
Bram Moolenaar7f764942020-12-02 15:11:18 +01002332 goto theend;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002333 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002334
Bram Moolenaar078a4612022-01-04 15:17:03 +00002335 rhs_type = cctx->ctx_type_stack.ga_len == 0 ? &t_void
2336 : get_type_on_stack(cctx, 0);
Bram Moolenaar752fc692021-01-04 21:57:11 +01002337 if (lhs.lhs_lvar != NULL && (is_decl || !lhs.lhs_has_type))
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002338 {
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002339 if ((rhs_type->tt_type == VAR_FUNC
2340 || rhs_type->tt_type == VAR_PARTIAL)
Bram Moolenaar3f327882021-03-17 20:56:38 +01002341 && !lhs.lhs_has_index
Bram Moolenaar752fc692021-01-04 21:57:11 +01002342 && var_wrong_func_name(lhs.lhs_name, TRUE))
Bram Moolenaar0f769812020-09-12 18:32:34 +02002343 goto theend;
2344
Bram Moolenaar752fc692021-01-04 21:57:11 +01002345 if (lhs.lhs_new_local && !lhs.lhs_has_type)
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002346 {
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002347 if (rhs_type->tt_type == VAR_VOID)
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002348 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002349 emsg(_(e_cannot_use_void_value));
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002350 goto theend;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002351 }
2352 else
2353 {
Bram Moolenaarfa103972022-09-29 19:14:42 +01002354 type_T *type;
2355
Bram Moolenaar04bdd572020-09-23 13:25:32 +02002356 // An empty list or dict has a &t_unknown member,
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002357 // for a variable that implies &t_any.
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002358 if (rhs_type == &t_list_empty)
Bram Moolenaarfa103972022-09-29 19:14:42 +01002359 type = &t_list_any;
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002360 else if (rhs_type == &t_dict_empty)
Bram Moolenaarfa103972022-09-29 19:14:42 +01002361 type = &t_dict_any;
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002362 else if (rhs_type == &t_unknown)
Bram Moolenaarfa103972022-09-29 19:14:42 +01002363 type = &t_any;
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002364 else
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002365 {
Bram Moolenaarfa103972022-09-29 19:14:42 +01002366 type = rhs_type;
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002367 inferred_type = rhs_type;
2368 }
Bram Moolenaarfa103972022-09-29 19:14:42 +01002369 set_var_type(lhs.lhs_lvar, type, cctx);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002370 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002371 }
Bram Moolenaar93ad1472020-08-19 22:02:41 +02002372 else if (*op == '=')
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002373 {
Bram Moolenaar752fc692021-01-04 21:57:11 +01002374 type_T *use_type = lhs.lhs_lvar->lv_type;
Bram Moolenaar4270d8b2021-08-07 16:30:42 +02002375 where_T where = WHERE_INIT;
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002376
Bram Moolenaar77709b12021-04-03 21:01:01 +02002377 // Without operator check type here, otherwise below.
2378 // Use the line number of the assignment.
2379 SOURCING_LNUM = start_lnum;
Bram Moolenaar4270d8b2021-08-07 16:30:42 +02002380 where.wt_index = var_count > 0 ? var_idx + 1 : 0;
2381 where.wt_variable = var_count > 0;
Bram Moolenaar4f0884d2021-08-11 21:49:23 +02002382 // If assigning to a list or dict member, use the
2383 // member type. Not for "list[:] =".
2384 if (lhs.lhs_has_index
2385 && !has_list_index(var_start + lhs.lhs_varlen,
2386 cctx))
Bram Moolenaar752fc692021-01-04 21:57:11 +01002387 use_type = lhs.lhs_member_type;
Bram Moolenaar4270d8b2021-08-07 16:30:42 +02002388 if (need_type_where(rhs_type, use_type, -1, where,
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002389 cctx, FALSE, is_const) == FAIL)
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002390 goto theend;
2391 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002392 }
Bram Moolenaar74f4a962021-06-17 21:03:07 +02002393 else
2394 {
2395 type_T *lhs_type = lhs.lhs_member_type;
2396
2397 // Special case: assigning to @# can use a number or a
2398 // string.
Bram Moolenaaraf647e72021-08-05 19:01:17 +02002399 // Also: can assign a number to a float.
2400 if ((lhs_type == &t_number_or_string
2401 || lhs_type == &t_float)
2402 && rhs_type->tt_type == VAR_NUMBER)
Bram Moolenaar74f4a962021-06-17 21:03:07 +02002403 lhs_type = &t_number;
2404 if (*p != '=' && need_type(rhs_type, lhs_type,
Bram Moolenaar351ead02021-01-16 16:07:01 +01002405 -1, 0, cctx, FALSE, FALSE) == FAIL)
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002406 goto theend;
Bram Moolenaar74f4a962021-06-17 21:03:07 +02002407 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002408 }
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002409 else if (cmdidx == CMD_final)
2410 {
2411 emsg(_(e_final_requires_a_value));
2412 goto theend;
2413 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002414 else if (cmdidx == CMD_const)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002415 {
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002416 emsg(_(e_const_requires_a_value));
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002417 goto theend;
2418 }
Bram Moolenaardcb53be2021-12-09 14:23:43 +00002419 else if (!lhs.lhs_has_type || lhs.lhs_dest == dest_option
2420 || lhs.lhs_dest == dest_func_option)
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002421 {
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002422 emsg(_(e_type_or_initialization_required));
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002423 goto theend;
2424 }
2425 else
2426 {
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002427 int r = OK;
2428
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002429 // variables are always initialized
Bram Moolenaar35578162021-08-02 19:10:38 +02002430 if (GA_GROW_FAILS(instr, 1))
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002431 goto theend;
Bram Moolenaar752fc692021-01-04 21:57:11 +01002432 switch (lhs.lhs_member_type->tt_type)
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002433 {
2434 case VAR_BOOL:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002435 r = generate_PUSHBOOL(cctx, VVAL_FALSE);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002436 break;
2437 case VAR_FLOAT:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002438 r = generate_PUSHF(cctx, 0.0);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002439 break;
2440 case VAR_STRING:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002441 r = generate_PUSHS(cctx, NULL);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002442 break;
2443 case VAR_BLOB:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002444 r = generate_PUSHBLOB(cctx, blob_alloc());
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002445 break;
2446 case VAR_FUNC:
Bram Moolenaar1d84f762022-09-03 21:35:53 +01002447 r = generate_PUSHFUNC(cctx, NULL, &t_func_void, TRUE);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002448 break;
2449 case VAR_LIST:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002450 r = generate_NEWLIST(cctx, 0, FALSE);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002451 break;
2452 case VAR_DICT:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002453 r = generate_NEWDICT(cctx, 0, FALSE);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002454 break;
2455 case VAR_JOB:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002456 r = generate_PUSHJOB(cctx);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002457 break;
2458 case VAR_CHANNEL:
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002459 r = generate_PUSHCHANNEL(cctx);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002460 break;
2461 case VAR_NUMBER:
2462 case VAR_UNKNOWN:
2463 case VAR_ANY:
2464 case VAR_PARTIAL:
2465 case VAR_VOID:
Bram Moolenaarf18332f2021-05-07 17:55:55 +02002466 case VAR_INSTR:
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002467 case VAR_SPECIAL: // cannot happen
Bram Moolenaar38ecd972022-01-15 21:44:44 +00002468 // This is skipped for local variables, they are always
2469 // initialized to zero. But in a "for" or "while" loop
2470 // the value may have been changed.
2471 if (lhs.lhs_dest == dest_local
2472 && !inside_loop_scope(cctx))
Bram Moolenaar5cd64792021-12-25 18:23:24 +00002473 skip_store = TRUE;
2474 else
Bram Moolenaar38ecd972022-01-15 21:44:44 +00002475 {
2476 instr_count = instr->ga_len;
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002477 r = generate_PUSHNR(cctx, 0);
Bram Moolenaar38ecd972022-01-15 21:44:44 +00002478 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002479 break;
2480 }
Bram Moolenaarc9af6172022-05-04 16:46:54 +01002481 if (r == FAIL)
2482 goto theend;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002483 }
2484 if (var_count == 0)
2485 end = p;
2486 }
2487
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002488 // no need to parse more when skipping
Bram Moolenaar9b68c822020-06-18 19:31:08 +02002489 if (cctx->ctx_skip == SKIP_YES)
Bram Moolenaar72abcf42020-06-18 18:26:24 +02002490 break;
2491
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002492 if (oplen > 0 && *op != '=')
2493 {
Bram Moolenaar93ad1472020-08-19 22:02:41 +02002494 type_T *expected;
Bram Moolenaarc3160722021-08-02 21:12:05 +02002495 type_T *stacktype = NULL;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002496
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002497 if (*op == '.')
Bram Moolenaarf5d52c92021-07-31 22:51:10 +02002498 {
2499 if (may_generate_2STRING(-1, FALSE, cctx) == FAIL)
2500 goto theend;
2501 }
Bram Moolenaar93ad1472020-08-19 22:02:41 +02002502 else
Bram Moolenaarf5d52c92021-07-31 22:51:10 +02002503 {
Bram Moolenaar752fc692021-01-04 21:57:11 +01002504 expected = lhs.lhs_member_type;
Bram Moolenaar078a4612022-01-04 15:17:03 +00002505 stacktype = get_type_on_stack(cctx, 0);
Bram Moolenaarf5d52c92021-07-31 22:51:10 +02002506 if (
Bram Moolenaarf5d52c92021-07-31 22:51:10 +02002507 // If variable is float operation with number is OK.
Bram Moolenaar7bf9a072021-08-02 21:55:15 +02002508 !(expected == &t_float && (stacktype == &t_number
2509 || stacktype == &t_number_bool)) &&
Bram Moolenaar351ead02021-01-16 16:07:01 +01002510 need_type(stacktype, expected, -1, 0, cctx,
Bram Moolenaar334a8b42020-10-19 16:07:42 +02002511 FALSE, FALSE) == FAIL)
Bram Moolenaarf5d52c92021-07-31 22:51:10 +02002512 goto theend;
2513 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002514
2515 if (*op == '.')
Bram Moolenaardd29f1b2020-08-07 20:46:20 +02002516 {
LemonBoy372bcce2022-04-25 12:43:20 +01002517 if (generate_CONCAT(cctx, 2) == FAIL)
Bram Moolenaardd29f1b2020-08-07 20:46:20 +02002518 goto theend;
2519 }
2520 else if (*op == '+')
2521 {
2522 if (generate_add_instr(cctx,
Bram Moolenaar752fc692021-01-04 21:57:11 +01002523 operator_type(lhs.lhs_member_type, stacktype),
Bram Moolenaar07802042021-09-09 23:01:14 +02002524 lhs.lhs_member_type, stacktype,
2525 EXPR_APPEND) == FAIL)
Bram Moolenaardd29f1b2020-08-07 20:46:20 +02002526 goto theend;
2527 }
Bram Moolenaar93ad1472020-08-19 22:02:41 +02002528 else if (generate_two_op(cctx, op) == FAIL)
2529 goto theend;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002530 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002531
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002532 // Use the line number of the assignment for store instruction.
2533 save_lnum = cctx->ctx_lnum;
2534 cctx->ctx_lnum = start_lnum - 1;
2535
Bram Moolenaar752fc692021-01-04 21:57:11 +01002536 if (lhs.lhs_has_index)
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002537 {
Bram Moolenaar752fc692021-01-04 21:57:11 +01002538 // Use the info in "lhs" to store the value at the index in the
2539 // list or dict.
2540 if (compile_assign_unlet(var_start, &lhs, TRUE, rhs_type, cctx)
2541 == FAIL)
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002542 {
2543 cctx->ctx_lnum = save_lnum;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002544 goto theend;
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002545 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002546 }
2547 else
2548 {
Bram Moolenaar752fc692021-01-04 21:57:11 +01002549 if (is_decl && cmdidx == CMD_const && (lhs.lhs_dest == dest_script
Bram Moolenaard877a572021-04-01 19:42:48 +02002550 || lhs.lhs_dest == dest_global
Bram Moolenaar752fc692021-01-04 21:57:11 +01002551 || lhs.lhs_dest == dest_local))
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002552 // ":const var": lock the value, but not referenced variables
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002553 generate_LOCKCONST(cctx);
2554
Bram Moolenaar10d6f182022-01-04 15:54:38 +00002555 if ((lhs.lhs_type->tt_type == VAR_DICT
Bram Moolenaar752fc692021-01-04 21:57:11 +01002556 || lhs.lhs_type->tt_type == VAR_LIST)
2557 && lhs.lhs_type->tt_member != NULL
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002558 && lhs.lhs_type->tt_member != &t_any
Bram Moolenaar752fc692021-01-04 21:57:11 +01002559 && lhs.lhs_type->tt_member != &t_unknown)
Bram Moolenaaraa210a32021-01-02 15:41:03 +01002560 // Set the type in the list or dict, so that it can be checked,
Bram Moolenaar10d6f182022-01-04 15:54:38 +00002561 // also in legacy script.
Bram Moolenaar752fc692021-01-04 21:57:11 +01002562 generate_SETTYPE(cctx, lhs.lhs_type);
Bram Moolenaare88c6b72022-02-15 15:37:11 +00002563 else if (inferred_type != NULL
2564 && (inferred_type->tt_type == VAR_DICT
2565 || inferred_type->tt_type == VAR_LIST)
2566 && inferred_type->tt_member != NULL
2567 && inferred_type->tt_member != &t_unknown
2568 && inferred_type->tt_member != &t_any)
2569 // Set the type in the list or dict, so that it can be checked,
2570 // also in legacy script.
2571 generate_SETTYPE(cctx, inferred_type);
Bram Moolenaaraa210a32021-01-02 15:41:03 +01002572
Bram Moolenaar5cd64792021-12-25 18:23:24 +00002573 if (!skip_store && generate_store_lhs(cctx, &lhs,
2574 instr_count, is_decl) == FAIL)
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002575 {
2576 cctx->ctx_lnum = save_lnum;
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02002577 goto theend;
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002578 }
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02002579 }
Bram Moolenaar6977dba2021-07-04 22:48:12 +02002580 cctx->ctx_lnum = save_lnum;
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002581
2582 if (var_idx + 1 < var_count)
Bram Moolenaarab36e6a2021-11-30 16:14:49 +00002583 var_start = skipwhite(lhs.lhs_end + 1);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002584 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002585
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002586 // For "[var, var] = expr" drop the "expr" value.
2587 // Also for "[var, var; _] = expr".
2588 if (var_count > 0 && (!semicolon || !did_generate_slice))
Bram Moolenaar9af78762020-06-16 11:34:42 +02002589 {
Bram Moolenaarec792292020-12-13 21:26:56 +01002590 if (generate_instr_drop(cctx, ISN_DROP, 1) == NULL)
Bram Moolenaar9af78762020-06-16 11:34:42 +02002591 goto theend;
2592 }
Bram Moolenaar47a519a2020-06-14 23:05:10 +02002593
Bram Moolenaarb2097502020-07-19 17:17:02 +02002594 ret = skipwhite(end);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002595
2596theend:
Bram Moolenaar752fc692021-01-04 21:57:11 +01002597 vim_free(lhs.lhs_name);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002598 return ret;
2599}
2600
2601/*
Bram Moolenaar17126b12021-01-07 22:03:02 +01002602 * Check for an assignment at "eap->cmd", compile it if found.
2603 * Return NOTDONE if there is none, FAIL for failure, OK if done.
2604 */
2605 static int
2606may_compile_assignment(exarg_T *eap, char_u **line, cctx_T *cctx)
2607{
2608 char_u *pskip;
2609 char_u *p;
2610
2611 // Assuming the command starts with a variable or function name,
2612 // find what follows.
2613 // Skip over "var.member", "var[idx]" and the like.
2614 // Also "&opt = val", "$ENV = val" and "@r = val".
2615 pskip = (*eap->cmd == '&' || *eap->cmd == '$' || *eap->cmd == '@')
2616 ? eap->cmd + 1 : eap->cmd;
2617 p = to_name_end(pskip, TRUE);
2618 if (p > eap->cmd && *p != NUL)
2619 {
2620 char_u *var_end;
2621 int oplen;
2622 int heredoc;
2623
2624 if (eap->cmd[0] == '@')
2625 var_end = eap->cmd + 2;
2626 else
2627 var_end = find_name_end(pskip, NULL, NULL,
2628 FNE_CHECK_START | FNE_INCL_BR);
2629 oplen = assignment_len(skipwhite(var_end), &heredoc);
2630 if (oplen > 0)
2631 {
2632 size_t len = p - eap->cmd;
2633
2634 // Recognize an assignment if we recognize the variable
2635 // name:
Bram Moolenaar17126b12021-01-07 22:03:02 +01002636 // "&opt = expr"
2637 // "$ENV = expr"
2638 // "@r = expr"
Bram Moolenaar2e17fef2022-03-18 19:44:48 +00002639 // "g:var = expr"
2640 // "g:[key] = expr"
2641 // "local = expr" where "local" is a local var.
2642 // "script = expr" where "script" is a script-local var.
2643 // "import = expr" where "import" is an imported var
Bram Moolenaar17126b12021-01-07 22:03:02 +01002644 if (*eap->cmd == '&'
2645 || *eap->cmd == '$'
2646 || *eap->cmd == '@'
2647 || ((len) > 2 && eap->cmd[1] == ':')
Bram Moolenaar2e17fef2022-03-18 19:44:48 +00002648 || STRNCMP(eap->cmd, "g:[", 3) == 0
Bram Moolenaare0890d62021-02-17 14:52:14 +01002649 || variable_exists(eap->cmd, len, cctx))
Bram Moolenaar17126b12021-01-07 22:03:02 +01002650 {
2651 *line = compile_assignment(eap->cmd, eap, CMD_SIZE, cctx);
2652 if (*line == NULL || *line == eap->cmd)
2653 return FAIL;
2654 return OK;
2655 }
2656 }
2657 }
2658
2659 if (*eap->cmd == '[')
2660 {
Bram Moolenaar8b716f52022-02-15 21:17:56 +00002661 // might be "[var, var] = expr"
Bram Moolenaar17126b12021-01-07 22:03:02 +01002662 *line = compile_assignment(eap->cmd, eap, CMD_SIZE, cctx);
2663 if (*line == NULL)
2664 return FAIL;
2665 if (*line != eap->cmd)
2666 return OK;
2667 }
2668 return NOTDONE;
2669}
2670
Bram Moolenaar9a015112021-12-31 14:06:45 +00002671/*
2672 * Check if arguments of "ufunc" shadow variables in "cctx".
2673 * Return OK or FAIL.
2674 */
2675 static int
2676check_args_shadowing(ufunc_T *ufunc, cctx_T *cctx)
2677{
2678 int i;
2679 char_u *arg;
2680 int r = OK;
2681
2682 // Make sure arguments are not found when compiling a second time.
2683 ufunc->uf_args_visible = 0;
2684
2685 // Check for arguments shadowing variables from the context.
2686 for (i = 0; i < ufunc->uf_args.ga_len; ++i)
2687 {
2688 arg = ((char_u **)(ufunc->uf_args.ga_data))[i];
Bram Moolenaardce24412022-02-08 20:35:30 +00002689 if (check_defined(arg, STRLEN(arg), cctx, NULL, TRUE) == FAIL)
Bram Moolenaar9a015112021-12-31 14:06:45 +00002690 {
2691 r = FAIL;
2692 break;
2693 }
2694 }
2695 ufunc->uf_args_visible = ufunc->uf_args.ga_len;
2696 return r;
2697}
2698
Bram Moolenaarfcb86b02022-10-07 22:46:24 +01002699#ifdef HAS_MESSAGE_WINDOW
Bram Moolenaar139575d2022-03-15 19:29:30 +00002700/*
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01002701 * Get a count before a command. Can only be a number.
2702 * Returns zero if there is no count.
2703 * Returns -1 if there is something wrong.
2704 */
2705 static long
2706get_cmd_count(char_u *line, exarg_T *eap)
2707{
2708 char_u *p;
2709
2710 // skip over colons and white space
2711 for (p = line; *p == ':' || VIM_ISWHITE(*p); ++p)
2712 ;
2713 if (!isdigit(*p))
2714 {
Bram Moolenaar2435adf2022-10-21 12:05:46 +01002715 // The command or modifiers must be following. Assume a lower case
2716 // character means there is a modifier.
2717 if (p < eap->cmd && !vim_islower(*p))
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01002718 {
2719 emsg(_(e_invalid_range));
2720 return -1;
2721 }
2722 return 0;
2723 }
2724 return atol((char *)p);
2725}
Bram Moolenaarfcb86b02022-10-07 22:46:24 +01002726#endif
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01002727
2728/*
Bram Moolenaar139575d2022-03-15 19:29:30 +00002729 * Get the compilation type that should be used for "ufunc".
2730 * Keep in sync with INSTRUCTIONS().
2731 */
2732 compiletype_T
2733get_compile_type(ufunc_T *ufunc)
2734{
2735 // Update uf_has_breakpoint if needed.
2736 update_has_breakpoint(ufunc);
2737
2738 if (debug_break_level > 0 || may_break_in_function(ufunc))
2739 return CT_DEBUG;
2740#ifdef FEAT_PROFILE
2741 if (do_profiling == PROF_YES)
2742 {
2743 if (!ufunc->uf_profiling && has_profiling(FALSE, ufunc->uf_name, NULL))
2744 func_do_profile(ufunc);
2745 if (ufunc->uf_profiling)
2746 return CT_PROFILE;
2747 }
2748#endif
2749 return CT_NONE;
2750}
2751
Bram Moolenaar7b829262021-10-13 15:04:34 +01002752
2753/*
Bram Moolenaar09689a02020-05-09 22:50:08 +02002754 * Add a function to the list of :def functions.
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02002755 * This sets "ufunc->uf_dfunc_idx" but the function isn't compiled yet.
Bram Moolenaar09689a02020-05-09 22:50:08 +02002756 */
Bram Moolenaar822ba242020-05-24 23:00:18 +02002757 static int
Bram Moolenaar09689a02020-05-09 22:50:08 +02002758add_def_function(ufunc_T *ufunc)
2759{
2760 dfunc_T *dfunc;
2761
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02002762 if (def_functions.ga_len == 0)
2763 {
2764 // The first position is not used, so that a zero uf_dfunc_idx means it
2765 // wasn't set.
Bram Moolenaar35578162021-08-02 19:10:38 +02002766 if (GA_GROW_FAILS(&def_functions, 1))
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02002767 return FAIL;
2768 ++def_functions.ga_len;
2769 }
2770
Bram Moolenaar09689a02020-05-09 22:50:08 +02002771 // Add the function to "def_functions".
Bram Moolenaar35578162021-08-02 19:10:38 +02002772 if (GA_GROW_FAILS(&def_functions, 1))
Bram Moolenaar09689a02020-05-09 22:50:08 +02002773 return FAIL;
2774 dfunc = ((dfunc_T *)def_functions.ga_data) + def_functions.ga_len;
2775 CLEAR_POINTER(dfunc);
2776 dfunc->df_idx = def_functions.ga_len;
2777 ufunc->uf_dfunc_idx = dfunc->df_idx;
2778 dfunc->df_ufunc = ufunc;
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01002779 dfunc->df_name = vim_strsave(ufunc->uf_name);
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +02002780 ga_init2(&dfunc->df_var_names, sizeof(char_u *), 10);
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01002781 ++dfunc->df_refcount;
Bram Moolenaar09689a02020-05-09 22:50:08 +02002782 ++def_functions.ga_len;
2783 return OK;
2784}
2785
2786/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002787 * After ex_function() has collected all the function lines: parse and compile
2788 * the lines into instructions.
2789 * Adds the function to "def_functions".
Bram Moolenaar9e68c322020-12-25 12:38:04 +01002790 * When "check_return_type" is set then set ufunc->uf_ret_type to the type of
2791 * the return statement (used for lambda). When uf_ret_type is already set
2792 * then check that it matches.
Bram Moolenaarb2049902021-01-24 12:53:53 +01002793 * When "profiling" is true add ISN_PROF_START instructions.
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +02002794 * "outer_cctx" is set for a nested function.
Bram Moolenaar05afcee2020-03-31 23:32:31 +02002795 * This can be used recursively through compile_lambda(), which may reallocate
2796 * "def_functions".
Bram Moolenaar822ba242020-05-24 23:00:18 +02002797 * Returns OK or FAIL.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002798 */
Bram Moolenaar822ba242020-05-24 23:00:18 +02002799 int
Bram Moolenaarb2049902021-01-24 12:53:53 +01002800compile_def_function(
Bram Moolenaare99d4222021-06-13 14:01:26 +02002801 ufunc_T *ufunc,
2802 int check_return_type,
2803 compiletype_T compile_type,
2804 cctx_T *outer_cctx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002805{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002806 char_u *line = NULL;
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +00002807 garray_T lines_to_free;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002808 char_u *p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002809 char *errormsg = NULL; // error message
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002810 cctx_T cctx;
2811 garray_T *instr;
Bram Moolenaard66960b2020-10-30 20:46:26 +01002812 int did_emsg_before = did_emsg;
Bram Moolenaar599410c2021-04-10 14:03:43 +02002813 int did_emsg_silent_before = did_emsg_silent;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002814 int ret = FAIL;
2815 sctx_T save_current_sctx = current_sctx;
Bram Moolenaarf4e8cdd2020-10-12 22:07:13 +02002816 int save_estack_compiling = estack_compiling;
Bram Moolenaardc4c2302021-04-25 13:54:42 +02002817 int save_cmod_flags = cmdmod.cmod_flags;
Bram Moolenaar25e0f582020-05-25 22:36:50 +02002818 int do_estack_push;
Bram Moolenaar6c4bfe42020-07-23 18:26:30 +02002819 int new_def_function = FALSE;
Bram Moolenaarf002a412021-01-24 13:34:18 +01002820#ifdef FEAT_PROFILE
Bram Moolenaarb2049902021-01-24 12:53:53 +01002821 int prof_lnum = -1;
Bram Moolenaarf002a412021-01-24 13:34:18 +01002822#endif
Bram Moolenaare99d4222021-06-13 14:01:26 +02002823 int debug_lnum = -1;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002824
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +00002825 // allocated lines are freed at the end
2826 ga_init2(&lines_to_free, sizeof(char_u *), 50);
2827
Bram Moolenaar25e0f582020-05-25 22:36:50 +02002828 // When using a function that was compiled before: Free old instructions.
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01002829 // The index is reused. Otherwise add a new entry in "def_functions".
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02002830 if (ufunc->uf_dfunc_idx > 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002831 {
Bram Moolenaar09689a02020-05-09 22:50:08 +02002832 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
2833 + ufunc->uf_dfunc_idx;
Bram Moolenaar3b814af2021-06-15 10:22:17 +02002834 isn_T *instr_dest = NULL;
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +02002835
2836 switch (compile_type)
2837 {
2838 case CT_PROFILE:
2839#ifdef FEAT_PROFILE
2840 instr_dest = dfunc->df_instr_prof; break;
2841#endif
2842 case CT_NONE: instr_dest = dfunc->df_instr; break;
2843 case CT_DEBUG: instr_dest = dfunc->df_instr_debug; break;
2844 }
2845 if (instr_dest != NULL)
2846 // Was compiled in this mode before: Free old instructions.
2847 delete_def_function_contents(dfunc, FALSE);
2848 ga_clear_strings(&dfunc->df_var_names);
Bram Moolenaar1d84f762022-09-03 21:35:53 +01002849 dfunc->df_defer_var_idx = 0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002850 }
Bram Moolenaar6c4bfe42020-07-23 18:26:30 +02002851 else
2852 {
2853 if (add_def_function(ufunc) == FAIL)
2854 return FAIL;
2855 new_def_function = TRUE;
2856 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002857
Bram Moolenaar96923b72022-03-15 15:57:04 +00002858 if ((ufunc->uf_flags & FC_CLOSURE) && outer_cctx == NULL)
2859 {
2860 semsg(_(e_compiling_closure_without_context_str),
2861 printable_func_name(ufunc));
2862 return FAIL;
2863 }
2864
Bram Moolenaar985116a2020-07-12 17:31:09 +02002865 ufunc->uf_def_status = UF_COMPILING;
2866
Bram Moolenaara80faa82020-04-12 19:37:17 +02002867 CLEAR_FIELD(cctx);
Bram Moolenaarb2049902021-01-24 12:53:53 +01002868
Bram Moolenaare99d4222021-06-13 14:01:26 +02002869 cctx.ctx_compile_type = compile_type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002870 cctx.ctx_ufunc = ufunc;
2871 cctx.ctx_lnum = -1;
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +02002872 cctx.ctx_outer = outer_cctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002873 ga_init2(&cctx.ctx_locals, sizeof(lvar_T), 10);
Bram Moolenaar078a4612022-01-04 15:17:03 +00002874 // Each entry on the type stack consists of two type pointers.
2875 ga_init2(&cctx.ctx_type_stack, sizeof(type2_T), 50);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002876 cctx.ctx_type_list = &ufunc->uf_type_list;
2877 ga_init2(&cctx.ctx_instr, sizeof(isn_T), 50);
2878 instr = &cctx.ctx_instr;
2879
Bram Moolenaar25e0f582020-05-25 22:36:50 +02002880 // Set the context to the function, it may be compiled when called from
2881 // another script. Set the script version to the most modern one.
2882 // The line number will be set in next_line_from_context().
2883 current_sctx = ufunc->uf_script_ctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002884 current_sctx.sc_version = SCRIPT_VERSION_VIM9;
2885
Bram Moolenaardc4c2302021-04-25 13:54:42 +02002886 // Don't use the flag from ":legacy" here.
2887 cmdmod.cmod_flags &= ~CMOD_LEGACY;
2888
Bram Moolenaar25e0f582020-05-25 22:36:50 +02002889 // Make sure error messages are OK.
2890 do_estack_push = !estack_top_is_ufunc(ufunc, 1);
2891 if (do_estack_push)
2892 estack_push_ufunc(ufunc, 1);
Bram Moolenaarf4e8cdd2020-10-12 22:07:13 +02002893 estack_compiling = TRUE;
Bram Moolenaar25e0f582020-05-25 22:36:50 +02002894
Bram Moolenaar9a015112021-12-31 14:06:45 +00002895 if (check_args_shadowing(ufunc, &cctx) == FAIL)
2896 goto erret;
2897
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002898 if (ufunc->uf_def_args.ga_len > 0)
2899 {
2900 int count = ufunc->uf_def_args.ga_len;
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002901 int first_def_arg = ufunc->uf_args.ga_len - count;
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002902 int i;
2903 char_u *arg;
2904 int off = STACK_FRAME_SIZE + (ufunc->uf_va_name != NULL ? 1 : 0);
Bram Moolenaarb8070e32020-07-23 20:56:04 +02002905 int did_set_arg_type = FALSE;
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002906
2907 // Produce instructions for the default values of optional arguments.
Bram Moolenaar12bce952021-03-11 20:04:04 +01002908 SOURCING_LNUM = 0; // line number unknown
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002909 for (i = 0; i < count; ++i)
2910 {
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002911 type_T *val_type;
2912 int arg_idx = first_def_arg + i;
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002913 where_T where = WHERE_INIT;
Bram Moolenaar12bce952021-03-11 20:04:04 +01002914 int r;
Bram Moolenaar38a3bfa2021-03-29 22:14:55 +02002915 int jump_instr_idx = instr->ga_len;
2916 isn_T *isn;
2917
2918 // Use a JUMP_IF_ARG_SET instruction to skip if the value was given.
2919 if (generate_JUMP_IF_ARG_SET(&cctx, i - count - off) == FAIL)
2920 goto erret;
Bram Moolenaar12bce952021-03-11 20:04:04 +01002921
2922 // Make sure later arguments are not found.
Bram Moolenaare28d9b32021-07-03 18:56:53 +02002923 ufunc->uf_args_visible = arg_idx;
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002924
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002925 arg = ((char_u **)(ufunc->uf_def_args.ga_data))[i];
Bram Moolenaar12bce952021-03-11 20:04:04 +01002926 r = compile_expr0(&arg, &cctx);
2927
Bram Moolenaar12bce952021-03-11 20:04:04 +01002928 if (r == FAIL)
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002929 goto erret;
2930
2931 // If no type specified use the type of the default value.
2932 // Otherwise check that the default value type matches the
2933 // specified type.
Bram Moolenaar078a4612022-01-04 15:17:03 +00002934 val_type = get_type_on_stack(&cctx, 0);
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002935 where.wt_index = arg_idx + 1;
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002936 if (ufunc->uf_arg_types[arg_idx] == &t_unknown)
Bram Moolenaarb8070e32020-07-23 20:56:04 +02002937 {
2938 did_set_arg_type = TRUE;
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002939 ufunc->uf_arg_types[arg_idx] = val_type;
Bram Moolenaarb8070e32020-07-23 20:56:04 +02002940 }
Bram Moolenaarfa46ead2021-12-22 13:18:39 +00002941 else if (need_type_where(val_type, ufunc->uf_arg_types[arg_idx],
2942 -1, where, &cctx, FALSE, FALSE) == FAIL)
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002943 goto erret;
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02002944
2945 if (generate_STORE(&cctx, ISN_STORE, i - count - off, NULL) == FAIL)
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002946 goto erret;
Bram Moolenaar38a3bfa2021-03-29 22:14:55 +02002947
2948 // set instruction index in JUMP_IF_ARG_SET to here
2949 isn = ((isn_T *)instr->ga_data) + jump_instr_idx;
2950 isn->isn_arg.jumparg.jump_where = instr->ga_len;
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002951 }
Bram Moolenaarb8070e32020-07-23 20:56:04 +02002952
2953 if (did_set_arg_type)
2954 set_function_type(ufunc);
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002955 }
Bram Moolenaare28d9b32021-07-03 18:56:53 +02002956 ufunc->uf_args_visible = ufunc->uf_args.ga_len;
Bram Moolenaar170fcfc2020-02-06 17:51:35 +01002957
2958 /*
2959 * Loop over all the lines of the function and generate instructions.
2960 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002961 for (;;)
2962 {
Bram Moolenaar2dd0a2c2020-08-08 15:10:27 +02002963 exarg_T ea;
Bram Moolenaar2dd0a2c2020-08-08 15:10:27 +02002964 int starts_with_colon = FALSE;
2965 char_u *cmd;
Bram Moolenaar02194d22020-10-24 23:08:38 +02002966 cmdmod_T local_cmdmod;
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +01002967
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02002968 // Bail out on the first error to avoid a flood of errors and report
2969 // the right line number when inside try/catch.
Bram Moolenaard66960b2020-10-30 20:46:26 +01002970 if (did_emsg_before != did_emsg)
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02002971 goto erret;
2972
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002973 if (line != NULL && *line == '|')
2974 // the line continues after a '|'
2975 ++line;
Bram Moolenaara3b7fdc2020-06-21 14:12:17 +02002976 else if (line != NULL && *skipwhite(line) != NUL
Bram Moolenaar7a092242020-04-16 22:10:49 +02002977 && !(*line == '#' && (line == cctx.ctx_line_start
2978 || VIM_ISWHITE(line[-1]))))
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002979 {
Bram Moolenaar74409f62022-01-01 15:58:22 +00002980 semsg(_(e_trailing_characters_str), line);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002981 goto erret;
2982 }
Bram Moolenaar4b3e1962021-03-18 21:37:55 +01002983 else if (line != NULL && vim9_bad_comment(skipwhite(line)))
2984 goto erret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002985 else
2986 {
Bram Moolenaar23c55272020-06-21 16:58:13 +02002987 line = next_line_from_context(&cctx, FALSE);
Bram Moolenaar4fdae992020-04-12 16:38:57 +02002988 if (cctx.ctx_lnum >= ufunc->uf_lines.ga_len)
Bram Moolenaarb2049902021-01-24 12:53:53 +01002989 {
Bram Moolenaarcb711ab2020-04-16 13:00:29 +02002990 // beyond the last line
Bram Moolenaarf002a412021-01-24 13:34:18 +01002991#ifdef FEAT_PROFILE
Bram Moolenaarced68a02021-01-24 17:53:47 +01002992 if (cctx.ctx_skip != SKIP_YES)
2993 may_generate_prof_end(&cctx, prof_lnum);
Bram Moolenaarf002a412021-01-24 13:34:18 +01002994#endif
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002995 break;
Bram Moolenaarb2049902021-01-24 12:53:53 +01002996 }
Bram Moolenaarf62d7392021-04-14 12:40:00 +02002997 // Make a copy, splitting off nextcmd and removing trailing spaces
2998 // may change it.
2999 if (line != NULL)
3000 {
3001 line = vim_strsave(line);
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +00003002 if (ga_add_string(&lines_to_free, line) == FAIL)
3003 goto erret;
Bram Moolenaarf62d7392021-04-14 12:40:00 +02003004 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003005 }
3006
Bram Moolenaara80faa82020-04-12 19:37:17 +02003007 CLEAR_FIELD(ea);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003008 ea.cmdlinep = &line;
3009 ea.cmd = skipwhite(line);
Bram Moolenaar97f8c102022-04-02 19:43:57 +01003010 ea.skip = cctx.ctx_skip == SKIP_YES;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003011
Bram Moolenaarb2049902021-01-24 12:53:53 +01003012 if (*ea.cmd == '#')
3013 {
Bram Moolenaarad6d9cc2022-08-08 21:43:11 +01003014 // "#" starts a comment, but "#{" is an error
3015 if (vim9_bad_comment(ea.cmd))
3016 goto erret;
Bram Moolenaarb2049902021-01-24 12:53:53 +01003017 line = (char_u *)"";
3018 continue;
3019 }
3020
Bram Moolenaarf002a412021-01-24 13:34:18 +01003021#ifdef FEAT_PROFILE
Bram Moolenaare99d4222021-06-13 14:01:26 +02003022 if (cctx.ctx_compile_type == CT_PROFILE && cctx.ctx_lnum != prof_lnum
3023 && cctx.ctx_skip != SKIP_YES)
Bram Moolenaarb2049902021-01-24 12:53:53 +01003024 {
3025 may_generate_prof_end(&cctx, prof_lnum);
3026
3027 prof_lnum = cctx.ctx_lnum;
3028 generate_instr(&cctx, ISN_PROF_START);
3029 }
Bram Moolenaarf002a412021-01-24 13:34:18 +01003030#endif
Bram Moolenaare99d4222021-06-13 14:01:26 +02003031 if (cctx.ctx_compile_type == CT_DEBUG && cctx.ctx_lnum != debug_lnum
3032 && cctx.ctx_skip != SKIP_YES)
3033 {
3034 debug_lnum = cctx.ctx_lnum;
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +02003035 generate_instr_debug(&cctx);
Bram Moolenaare99d4222021-06-13 14:01:26 +02003036 }
Bram Moolenaar8cec9272021-06-23 20:20:53 +02003037 cctx.ctx_prev_lnum = cctx.ctx_lnum + 1;
Bram Moolenaarb2049902021-01-24 12:53:53 +01003038
Bram Moolenaarcb711ab2020-04-16 13:00:29 +02003039 // Some things can be recognized by the first character.
3040 switch (*ea.cmd)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003041 {
Bram Moolenaarcb711ab2020-04-16 13:00:29 +02003042 case '}':
3043 {
3044 // "}" ends a block scope
3045 scopetype_T stype = cctx.ctx_scope == NULL
3046 ? NO_SCOPE : cctx.ctx_scope->se_type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003047
Bram Moolenaarcb711ab2020-04-16 13:00:29 +02003048 if (stype == BLOCK_SCOPE)
3049 {
3050 compile_endblock(&cctx);
3051 line = ea.cmd;
3052 }
3053 else
3054 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +02003055 emsg(_(e_using_rcurly_outside_if_block_scope));
Bram Moolenaarcb711ab2020-04-16 13:00:29 +02003056 goto erret;
3057 }
3058 if (line != NULL)
3059 line = skipwhite(ea.cmd + 1);
3060 continue;
3061 }
3062
3063 case '{':
3064 // "{" starts a block scope
3065 // "{'a': 1}->func() is something else
3066 if (ends_excmd(*skipwhite(ea.cmd + 1)))
3067 {
3068 line = compile_block(ea.cmd, &cctx);
3069 continue;
3070 }
3071 break;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003072 }
3073
3074 /*
3075 * COMMAND MODIFIERS
3076 */
Bram Moolenaar02194d22020-10-24 23:08:38 +02003077 cctx.ctx_has_cmdmod = FALSE;
Bram Moolenaare1004402020-10-24 20:49:43 +02003078 if (parse_command_modifiers(&ea, &errormsg, &local_cmdmod, FALSE)
3079 == FAIL)
Bram Moolenaarbc510062022-02-14 21:19:04 +00003080 goto erret;
Bram Moolenaare1004402020-10-24 20:49:43 +02003081 generate_cmdmods(&cctx, &local_cmdmod);
3082 undo_cmdmod(&local_cmdmod);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003083
Bram Moolenaare88c8e82020-11-01 17:03:37 +01003084 // Check if there was a colon after the last command modifier or before
3085 // the current position.
3086 for (p = ea.cmd; p >= line; --p)
3087 {
3088 if (*p == ':')
3089 starts_with_colon = TRUE;
3090 if (p < ea.cmd && !VIM_ISWHITE(*p))
3091 break;
3092 }
3093
Bram Moolenaarce024c32021-06-26 13:00:49 +02003094 // Skip ":call" to get to the function name, unless using :legacy
Bram Moolenaar575f24b2020-08-12 14:21:11 +02003095 p = ea.cmd;
Bram Moolenaarce024c32021-06-26 13:00:49 +02003096 if (!(local_cmdmod.cmod_flags & CMOD_LEGACY))
Bram Moolenaar575f24b2020-08-12 14:21:11 +02003097 {
Bram Moolenaarce024c32021-06-26 13:00:49 +02003098 if (checkforcmd(&ea.cmd, "call", 3))
3099 {
3100 if (*ea.cmd == '(')
3101 // not for "call()"
3102 ea.cmd = p;
3103 else
3104 ea.cmd = skipwhite(ea.cmd);
3105 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003106
Bram Moolenaarce024c32021-06-26 13:00:49 +02003107 if (!starts_with_colon)
3108 {
3109 int assign;
Bram Moolenaar1cc2a942020-05-10 19:10:31 +02003110
Bram Moolenaarce024c32021-06-26 13:00:49 +02003111 // Check for assignment after command modifiers.
3112 assign = may_compile_assignment(&ea, &line, &cctx);
3113 if (assign == OK)
3114 goto nextline;
3115 if (assign == FAIL)
3116 goto erret;
3117 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003118 }
3119
3120 /*
3121 * COMMAND after range
Bram Moolenaar3d48e252020-07-15 14:15:52 +02003122 * 'text'->func() should not be confused with 'a mark
Bram Moolenaarc1e6c7b2022-02-20 18:26:46 +00003123 * 0z1234->func() should not be confused with a zero line number
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02003124 * "++nr" and "--nr" are eval commands
Bram Moolenaar5ca5cc62021-08-24 21:56:03 +02003125 * in "$ENV->func()" the "$" is not a range
Bram Moolenaar31d99482022-05-26 22:24:43 +01003126 * "123->func()" is a method call
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003127 */
Bram Moolenaardf069ee2020-06-22 23:02:51 +02003128 cmd = ea.cmd;
Bram Moolenaarb579f6e2021-12-04 11:57:00 +00003129 if ((*cmd != '$' || starts_with_colon)
Bram Moolenaarc1e6c7b2022-02-20 18:26:46 +00003130 && (starts_with_colon
3131 || !(*cmd == '\''
3132 || (cmd[0] == '0' && cmd[1] == 'z')
3133 || (cmd[0] != NUL && cmd[0] == cmd[1]
Bram Moolenaar31d99482022-05-26 22:24:43 +01003134 && (*cmd == '+' || *cmd == '-'))
3135 || number_method(cmd))))
Bram Moolenaardf069ee2020-06-22 23:02:51 +02003136 {
Bram Moolenaar3bd8de42020-09-14 16:37:34 +02003137 ea.cmd = skip_range(ea.cmd, TRUE, NULL);
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003138 if (ea.cmd > cmd)
Bram Moolenaar3d48e252020-07-15 14:15:52 +02003139 {
Bram Moolenaarb579f6e2021-12-04 11:57:00 +00003140 if (!starts_with_colon
3141 && !(local_cmdmod.cmod_flags & CMOD_LEGACY))
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003142 {
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01003143 semsg(_(e_colon_required_before_range_str), cmd);
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003144 goto erret;
3145 }
Bram Moolenaarada1d872021-02-20 08:16:51 +01003146 ea.addr_count = 1;
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003147 if (ends_excmd2(line, ea.cmd))
3148 {
3149 // A range without a command: jump to the line.
Bram Moolenaare4eed8c2021-12-01 15:22:56 +00003150 generate_EXEC(&cctx, ISN_EXECRANGE,
Bram Moolenaarb579f6e2021-12-04 11:57:00 +00003151 vim_strnsave(cmd, ea.cmd - cmd));
Bram Moolenaare4eed8c2021-12-01 15:22:56 +00003152 line = ea.cmd;
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003153 goto nextline;
3154 }
Bram Moolenaar3d48e252020-07-15 14:15:52 +02003155 }
Bram Moolenaardf069ee2020-06-22 23:02:51 +02003156 }
Bram Moolenaar47bc9c32021-07-17 21:24:56 +02003157 p = find_ex_command(&ea, NULL,
3158 starts_with_colon || (local_cmdmod.cmod_flags & CMOD_LEGACY)
Bram Moolenaar77b10ff2021-03-14 13:21:35 +01003159 ? NULL : item_exists, &cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003160
Bram Moolenaard1510ee2021-01-04 16:15:58 +01003161 if (p == NULL)
3162 {
3163 if (cctx.ctx_skip != SKIP_YES)
Bram Moolenaarbed34f02022-01-19 20:48:37 +00003164 semsg(_(e_ambiguous_use_of_user_defined_command_str), ea.cmd);
Bram Moolenaard1510ee2021-01-04 16:15:58 +01003165 goto erret;
3166 }
3167
Bram Moolenaar96cf4ba2021-04-24 14:15:41 +02003168 // When using ":legacy cmd" always use compile_exec().
3169 if (local_cmdmod.cmod_flags & CMOD_LEGACY)
Bram Moolenaar3b1373b2021-05-17 00:01:42 +02003170 {
3171 char_u *start = ea.cmd;
3172
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02003173 switch (ea.cmdidx)
3174 {
3175 case CMD_if:
3176 case CMD_elseif:
3177 case CMD_else:
3178 case CMD_endif:
3179 case CMD_for:
3180 case CMD_endfor:
3181 case CMD_continue:
3182 case CMD_break:
3183 case CMD_while:
3184 case CMD_endwhile:
3185 case CMD_try:
3186 case CMD_catch:
3187 case CMD_finally:
3188 case CMD_endtry:
3189 semsg(_(e_cannot_use_legacy_with_command_str), ea.cmd);
3190 goto erret;
3191 default: break;
3192 }
3193
Bram Moolenaar3b1373b2021-05-17 00:01:42 +02003194 // ":legacy return expr" needs to be handled differently.
3195 if (checkforcmd(&start, "return", 4))
3196 ea.cmdidx = CMD_return;
3197 else
3198 ea.cmdidx = CMD_legacy;
3199 }
Bram Moolenaar96cf4ba2021-04-24 14:15:41 +02003200
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003201 if (p == ea.cmd && ea.cmdidx != CMD_SIZE)
3202 {
Bram Moolenaar97f8c102022-04-02 19:43:57 +01003203 // "eval" is used for "val->func()" and "var" for "var = val", then
3204 // "p" is equal to "ea.cmd" for a valid command.
3205 if (ea.cmdidx == CMD_eval || ea.cmdidx == CMD_var)
3206 ;
3207 else if (cctx.ctx_skip == SKIP_YES)
Bram Moolenaara259d8d2020-01-31 20:10:50 +01003208 {
3209 line += STRLEN(line);
Bram Moolenaarf665e972020-12-05 19:17:16 +01003210 goto nextline;
Bram Moolenaara259d8d2020-01-31 20:10:50 +01003211 }
Bram Moolenaar97f8c102022-04-02 19:43:57 +01003212 else
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003213 {
Bram Moolenaar52c124d2020-12-20 21:43:35 +01003214 semsg(_(e_command_not_recognized_str), ea.cmd);
Bram Moolenaar007f9d62020-07-06 23:04:49 +02003215 goto erret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003216 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003217 }
3218
Bram Moolenaar3988f642020-08-27 22:43:03 +02003219 if (cctx.ctx_had_return
Bram Moolenaara259d8d2020-01-31 20:10:50 +01003220 && ea.cmdidx != CMD_elseif
3221 && ea.cmdidx != CMD_else
Bram Moolenaarefd88552020-06-18 20:50:10 +02003222 && ea.cmdidx != CMD_endif
3223 && ea.cmdidx != CMD_endfor
3224 && ea.cmdidx != CMD_endwhile
3225 && ea.cmdidx != CMD_catch
3226 && ea.cmdidx != CMD_finally
3227 && ea.cmdidx != CMD_endtry)
3228 {
Bram Moolenaar3988f642020-08-27 22:43:03 +02003229 emsg(_(e_unreachable_code_after_return));
3230 goto erret;
Bram Moolenaarefd88552020-06-18 20:50:10 +02003231 }
3232
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02003233 p = skipwhite(p);
3234 if (ea.cmdidx != CMD_SIZE
3235 && ea.cmdidx != CMD_write && ea.cmdidx != CMD_read)
3236 {
Bram Moolenaar9b123d82020-09-14 22:39:11 +02003237 if (ea.cmdidx >= 0)
3238 ea.argt = excmd_get_argt(ea.cmdidx);
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02003239 if ((ea.argt & EX_BANG) && *p == '!')
3240 {
3241 ea.forceit = TRUE;
3242 p = skipwhite(p + 1);
3243 }
Bram Moolenaar09d94212022-05-05 15:20:03 +01003244 if ((ea.argt & EX_RANGE) == 0 && ea.addr_count > 0)
3245 {
3246 emsg(_(e_no_range_allowed));
3247 goto erret;
3248 }
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02003249 }
3250
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003251 switch (ea.cmdidx)
3252 {
3253 case CMD_def:
Bram Moolenaar38453522021-11-28 22:00:12 +00003254 case CMD_function:
Bram Moolenaar04b12692020-05-04 23:24:44 +02003255 ea.arg = p;
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +00003256 line = compile_nested_function(&ea, &cctx, &lines_to_free);
Bram Moolenaar04b12692020-05-04 23:24:44 +02003257 break;
3258
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003259 case CMD_return:
Bram Moolenaar3b1373b2021-05-17 00:01:42 +02003260 line = compile_return(p, check_return_type,
3261 local_cmdmod.cmod_flags & CMOD_LEGACY, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003262 cctx.ctx_had_return = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003263 break;
3264
3265 case CMD_let:
Bram Moolenaarc58f5452020-10-21 20:58:52 +02003266 emsg(_(e_cannot_use_let_in_vim9_script));
3267 break;
Bram Moolenaar30fd8202020-09-26 15:09:30 +02003268 case CMD_var:
3269 case CMD_final:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003270 case CMD_const:
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02003271 case CMD_increment:
3272 case CMD_decrement:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003273 line = compile_assignment(p, &ea, ea.cmdidx, &cctx);
Bram Moolenaar47a519a2020-06-14 23:05:10 +02003274 if (line == p)
Bram Moolenaar8b716f52022-02-15 21:17:56 +00003275 {
3276 emsg(_(e_invalid_assignment));
Bram Moolenaar47a519a2020-06-14 23:05:10 +02003277 line = NULL;
Bram Moolenaar8b716f52022-02-15 21:17:56 +00003278 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003279 break;
3280
Bram Moolenaard72c1bf2020-04-19 16:28:59 +02003281 case CMD_unlet:
3282 case CMD_unlockvar:
3283 case CMD_lockvar:
3284 line = compile_unletlock(p, &ea, &cctx);
3285 break;
3286
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003287 case CMD_import:
Bram Moolenaar4db572e2021-07-18 18:21:38 +02003288 emsg(_(e_import_can_only_be_used_in_script));
3289 line = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003290 break;
3291
3292 case CMD_if:
3293 line = compile_if(p, &cctx);
3294 break;
3295 case CMD_elseif:
3296 line = compile_elseif(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003297 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003298 break;
3299 case CMD_else:
3300 line = compile_else(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003301 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003302 break;
3303 case CMD_endif:
3304 line = compile_endif(p, &cctx);
3305 break;
3306
3307 case CMD_while:
3308 line = compile_while(p, &cctx);
3309 break;
3310 case CMD_endwhile:
3311 line = compile_endwhile(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003312 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003313 break;
3314
3315 case CMD_for:
3316 line = compile_for(p, &cctx);
3317 break;
3318 case CMD_endfor:
3319 line = compile_endfor(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003320 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003321 break;
3322 case CMD_continue:
3323 line = compile_continue(p, &cctx);
3324 break;
3325 case CMD_break:
3326 line = compile_break(p, &cctx);
3327 break;
3328
3329 case CMD_try:
3330 line = compile_try(p, &cctx);
3331 break;
3332 case CMD_catch:
3333 line = compile_catch(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003334 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003335 break;
3336 case CMD_finally:
3337 line = compile_finally(p, &cctx);
Bram Moolenaarefd88552020-06-18 20:50:10 +02003338 cctx.ctx_had_return = FALSE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003339 break;
3340 case CMD_endtry:
3341 line = compile_endtry(p, &cctx);
3342 break;
3343 case CMD_throw:
3344 line = compile_throw(p, &cctx);
3345 break;
3346
Bram Moolenaar007f9d62020-07-06 23:04:49 +02003347 case CMD_eval:
Bram Moolenaarc3235272021-07-10 19:42:03 +02003348 line = compile_eval(p, &cctx);
Bram Moolenaar007f9d62020-07-06 23:04:49 +02003349 break;
3350
Bram Moolenaar1d84f762022-09-03 21:35:53 +01003351 case CMD_defer:
3352 line = compile_defer(p, &cctx);
3353 break;
3354
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003355#ifdef HAS_MESSAGE_WINDOW
3356 case CMD_echowindow:
3357 {
3358 long cmd_count = get_cmd_count(line, &ea);
Bram Moolenaar2eae3d22022-10-07 15:09:27 +01003359 if (cmd_count < 0)
3360 line = NULL;
3361 else
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003362 line = compile_mult_expr(p, ea.cmdidx,
3363 cmd_count, &cctx);
3364 }
3365 break;
3366#endif
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003367 case CMD_echo:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003368 case CMD_echon:
Bram Moolenaar7de62622021-08-07 15:05:47 +02003369 case CMD_echoconsole:
Bram Moolenaar7d7ad7b2022-09-01 16:00:53 +01003370 case CMD_echoerr:
3371 case CMD_echomsg:
Bram Moolenaar7d7ad7b2022-09-01 16:00:53 +01003372 case CMD_execute:
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003373 line = compile_mult_expr(p, ea.cmdidx, 0, &cctx);
Bram Moolenaarad39c092020-02-26 18:23:43 +01003374 break;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003375
Bram Moolenaarc3516f72020-09-08 22:45:35 +02003376 case CMD_put:
3377 ea.cmd = cmd;
3378 line = compile_put(p, &ea, &cctx);
3379 break;
3380
Bram Moolenaar4c137212021-04-19 16:48:48 +02003381 case CMD_substitute:
Bram Moolenaar7b829262021-10-13 15:04:34 +01003382 if (check_global_and_subst(ea.cmd, p) == FAIL)
3383 goto erret;
Bram Moolenaar4c137212021-04-19 16:48:48 +02003384 if (cctx.ctx_skip == SKIP_YES)
3385 line = (char_u *)"";
3386 else
3387 {
3388 ea.arg = p;
3389 line = compile_substitute(line, &ea, &cctx);
3390 }
3391 break;
3392
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003393 case CMD_redir:
3394 ea.arg = p;
3395 line = compile_redir(line, &ea, &cctx);
3396 break;
3397
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +02003398 case CMD_cexpr:
3399 case CMD_lexpr:
3400 case CMD_caddexpr:
3401 case CMD_laddexpr:
3402 case CMD_cgetexpr:
3403 case CMD_lgetexpr:
Bram Moolenaarb7c97812021-05-05 22:51:39 +02003404#ifdef FEAT_QUICKFIX
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +02003405 ea.arg = p;
3406 line = compile_cexpr(line, &ea, &cctx);
Bram Moolenaarb7c97812021-05-05 22:51:39 +02003407#else
3408 ex_ni(&ea);
3409 line = NULL;
3410#endif
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +02003411 break;
3412
Bram Moolenaarae616492020-07-28 20:07:27 +02003413 case CMD_append:
3414 case CMD_change:
3415 case CMD_insert:
Bram Moolenaar10b94212021-02-19 21:42:57 +01003416 case CMD_k:
Bram Moolenaarf5a48012020-08-01 17:00:03 +02003417 case CMD_t:
Bram Moolenaarae616492020-07-28 20:07:27 +02003418 case CMD_xit:
3419 not_in_vim9(&ea);
3420 goto erret;
3421
Bram Moolenaar002262f2020-07-08 17:47:57 +02003422 case CMD_SIZE:
Bram Moolenaar3988f642020-08-27 22:43:03 +02003423 if (cctx.ctx_skip != SKIP_YES)
3424 {
3425 semsg(_(e_invalid_command_str), ea.cmd);
3426 goto erret;
3427 }
3428 // We don't check for a next command here.
3429 line = (char_u *)"";
3430 break;
Bram Moolenaar002262f2020-07-08 17:47:57 +02003431
Bram Moolenaar20677332021-06-06 17:02:53 +02003432 case CMD_lua:
3433 case CMD_mzscheme:
3434 case CMD_perl:
3435 case CMD_py3:
3436 case CMD_python3:
3437 case CMD_python:
3438 case CMD_pythonx:
3439 case CMD_ruby:
3440 case CMD_tcl:
3441 ea.arg = p;
3442 if (vim_strchr(line, '\n') == NULL)
Bram Moolenaar5163fcc2020-08-27 23:37:09 +02003443 line = compile_exec(line, &ea, &cctx);
Bram Moolenaar20677332021-06-06 17:02:53 +02003444 else
3445 // heredoc lines have been concatenated with NL
3446 // characters in get_function_body()
3447 line = compile_script(line, &cctx);
3448 break;
3449
Bram Moolenaar107f7322022-02-06 17:30:41 +00003450 case CMD_vim9script:
Bram Moolenaar8cbf2492022-02-06 20:28:13 +00003451 if (cctx.ctx_skip != SKIP_YES)
3452 {
3453 emsg(_(e_vim9script_can_only_be_used_in_script));
3454 goto erret;
3455 }
3456 line = (char_u *)"";
3457 break;
Bram Moolenaar107f7322022-02-06 17:30:41 +00003458
Bram Moolenaar7b829262021-10-13 15:04:34 +01003459 case CMD_global:
3460 if (check_global_and_subst(ea.cmd, p) == FAIL)
3461 goto erret;
3462 // FALLTHROUGH
Bram Moolenaar20677332021-06-06 17:02:53 +02003463 default:
3464 // Not recognized, execute with do_cmdline_cmd().
3465 ea.arg = p;
3466 line = compile_exec(line, &ea, &cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003467 break;
3468 }
Bram Moolenaar5d72ce62020-08-20 23:04:06 +02003469nextline:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003470 if (line == NULL)
3471 goto erret;
Bram Moolenaar585fea72020-04-02 22:33:21 +02003472 line = skipwhite(line);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003473
Bram Moolenaarf4c6e1e2020-10-23 18:02:32 +02003474 // Undo any command modifiers.
Bram Moolenaar02194d22020-10-24 23:08:38 +02003475 generate_undo_cmdmods(&cctx);
Bram Moolenaarf4c6e1e2020-10-23 18:02:32 +02003476
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003477 if (cctx.ctx_type_stack.ga_len < 0)
3478 {
3479 iemsg("Type stack underflow");
3480 goto erret;
3481 }
3482 }
3483
3484 if (cctx.ctx_scope != NULL)
3485 {
3486 if (cctx.ctx_scope->se_type == IF_SCOPE)
Bram Moolenaar1a992222021-12-31 17:25:48 +00003487 emsg(_(e_missing_endif));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003488 else if (cctx.ctx_scope->se_type == WHILE_SCOPE)
Bram Moolenaar1a992222021-12-31 17:25:48 +00003489 emsg(_(e_missing_endwhile));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003490 else if (cctx.ctx_scope->se_type == FOR_SCOPE)
Bram Moolenaar1a992222021-12-31 17:25:48 +00003491 emsg(_(e_missing_endfor));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003492 else
Bram Moolenaar451c2e32020-08-15 16:33:28 +02003493 emsg(_(e_missing_rcurly));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003494 goto erret;
3495 }
3496
Bram Moolenaarefd88552020-06-18 20:50:10 +02003497 if (!cctx.ctx_had_return)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003498 {
Bram Moolenaare6174fd2021-06-12 18:30:56 +02003499 if (ufunc->uf_ret_type->tt_type == VAR_UNKNOWN)
3500 ufunc->uf_ret_type = &t_void;
3501 else if (ufunc->uf_ret_type->tt_type != VAR_VOID)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003502 {
Bram Moolenaar451c2e32020-08-15 16:33:28 +02003503 emsg(_(e_missing_return_statement));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003504 goto erret;
3505 }
3506
Bram Moolenaarf57b43c2021-06-15 22:13:27 +02003507 // Return void if there is no return at the end.
3508 generate_instr(&cctx, ISN_RETURN_VOID);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003509 }
3510
Bram Moolenaar599410c2021-04-10 14:03:43 +02003511 // When compiled with ":silent!" and there was an error don't consider the
3512 // function compiled.
3513 if (emsg_silent == 0 || did_emsg_silent == did_emsg_silent_before)
Bram Moolenaar05afcee2020-03-31 23:32:31 +02003514 {
3515 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
3516 + ufunc->uf_dfunc_idx;
3517 dfunc->df_deleted = FALSE;
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01003518 dfunc->df_script_seq = current_sctx.sc_seq;
Bram Moolenaarf002a412021-01-24 13:34:18 +01003519#ifdef FEAT_PROFILE
Bram Moolenaare99d4222021-06-13 14:01:26 +02003520 if (cctx.ctx_compile_type == CT_PROFILE)
Bram Moolenaarb2049902021-01-24 12:53:53 +01003521 {
3522 dfunc->df_instr_prof = instr->ga_data;
3523 dfunc->df_instr_prof_count = instr->ga_len;
3524 }
3525 else
Bram Moolenaarf002a412021-01-24 13:34:18 +01003526#endif
Bram Moolenaare99d4222021-06-13 14:01:26 +02003527 if (cctx.ctx_compile_type == CT_DEBUG)
3528 {
3529 dfunc->df_instr_debug = instr->ga_data;
3530 dfunc->df_instr_debug_count = instr->ga_len;
3531 }
3532 else
Bram Moolenaarb2049902021-01-24 12:53:53 +01003533 {
3534 dfunc->df_instr = instr->ga_data;
3535 dfunc->df_instr_count = instr->ga_len;
3536 }
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +02003537 dfunc->df_varcount = dfunc->df_var_names.ga_len;
Bram Moolenaar148ce7a2020-09-23 21:57:23 +02003538 dfunc->df_has_closure = cctx.ctx_has_closure;
Bram Moolenaarb46c0832022-09-15 17:19:37 +01003539
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +02003540 if (cctx.ctx_outer_used)
Bram Moolenaarb46c0832022-09-15 17:19:37 +01003541 {
Bram Moolenaarc8cd2b32020-05-01 19:29:08 +02003542 ufunc->uf_flags |= FC_CLOSURE;
Bram Moolenaarb46c0832022-09-15 17:19:37 +01003543 if (outer_cctx != NULL)
3544 ++outer_cctx->ctx_closure_count;
3545 }
3546
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02003547 ufunc->uf_def_status = UF_COMPILED;
Bram Moolenaar05afcee2020-03-31 23:32:31 +02003548 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003549
3550 ret = OK;
3551
3552erret:
Bram Moolenaar599410c2021-04-10 14:03:43 +02003553 if (ufunc->uf_def_status == UF_COMPILING)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003554 {
Bram Moolenaar05afcee2020-03-31 23:32:31 +02003555 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
3556 + ufunc->uf_dfunc_idx;
Bram Moolenaar20431c92020-03-20 18:39:46 +01003557
Bram Moolenaarcaf1a2f2021-06-15 11:27:21 +02003558 // Compiling aborted, free the generated instructions.
Bram Moolenaar8238f082021-04-20 21:10:48 +02003559 clear_instr_ga(instr);
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003560 VIM_CLEAR(dfunc->df_name);
Bram Moolenaarcaf1a2f2021-06-15 11:27:21 +02003561 ga_clear_strings(&dfunc->df_var_names);
Bram Moolenaar20431c92020-03-20 18:39:46 +01003562
Bram Moolenaar6c4bfe42020-07-23 18:26:30 +02003563 // If using the last entry in the table and it was added above, we
3564 // might as well remove it.
3565 if (!dfunc->df_deleted && new_def_function
Bram Moolenaar45a15082020-05-25 00:28:33 +02003566 && ufunc->uf_dfunc_idx == def_functions.ga_len - 1)
Bram Moolenaar6c4bfe42020-07-23 18:26:30 +02003567 {
Bram Moolenaar20431c92020-03-20 18:39:46 +01003568 --def_functions.ga_len;
Bram Moolenaar6c4bfe42020-07-23 18:26:30 +02003569 ufunc->uf_dfunc_idx = 0;
3570 }
Bram Moolenaar701cc6c2021-04-10 13:33:48 +02003571 ufunc->uf_def_status = UF_COMPILE_ERROR;
Bram Moolenaar20431c92020-03-20 18:39:46 +01003572
Bram Moolenaar3cca2992020-04-02 22:57:36 +02003573 while (cctx.ctx_scope != NULL)
3574 drop_scope(&cctx);
3575
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003576 if (errormsg != NULL)
3577 emsg(errormsg);
Bram Moolenaard66960b2020-10-30 20:46:26 +01003578 else if (did_emsg == did_emsg_before)
Bram Moolenaare13bdec2020-10-16 23:16:47 +02003579 emsg(_(e_compiling_def_function_failed));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003580 }
3581
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003582 if (cctx.ctx_redir_lhs.lhs_name != NULL)
3583 {
3584 if (ret == OK)
3585 {
3586 emsg(_(e_missing_redir_end));
3587 ret = FAIL;
3588 }
3589 vim_free(cctx.ctx_redir_lhs.lhs_name);
Bram Moolenaar753bcf82021-04-21 14:24:24 +02003590 vim_free(cctx.ctx_redir_lhs.lhs_whole);
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003591 }
3592
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003593 current_sctx = save_current_sctx;
Bram Moolenaarf4e8cdd2020-10-12 22:07:13 +02003594 estack_compiling = save_estack_compiling;
Bram Moolenaardc4c2302021-04-25 13:54:42 +02003595 cmdmod.cmod_flags = save_cmod_flags;
Bram Moolenaar25e0f582020-05-25 22:36:50 +02003596 if (do_estack_push)
3597 estack_pop();
3598
Bram Moolenaar9f1a39a2022-01-08 15:39:39 +00003599 ga_clear_strings(&lines_to_free);
Bram Moolenaarb84a3812020-05-01 15:44:29 +02003600 free_locals(&cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003601 ga_clear(&cctx.ctx_type_stack);
Bram Moolenaar822ba242020-05-24 23:00:18 +02003602 return ret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003603}
3604
Bram Moolenaar6ff71d82020-05-24 23:45:24 +02003605 void
3606set_function_type(ufunc_T *ufunc)
3607{
3608 int varargs = ufunc->uf_va_name != NULL;
3609 int argcount = ufunc->uf_args.ga_len;
3610
3611 // Create a type for the function, with the return type and any
3612 // argument types.
3613 // A vararg is included in uf_args.ga_len but not in uf_arg_types.
3614 // The type is included in "tt_args".
3615 if (argcount > 0 || varargs)
3616 {
Bram Moolenaar18062fc2021-03-05 21:35:47 +01003617 if (ufunc->uf_type_list.ga_itemsize == 0)
3618 ga_init2(&ufunc->uf_type_list, sizeof(type_T *), 10);
Bram Moolenaar6ff71d82020-05-24 23:45:24 +02003619 ufunc->uf_func_type = alloc_func_type(ufunc->uf_ret_type,
3620 argcount, &ufunc->uf_type_list);
3621 // Add argument types to the function type.
3622 if (func_type_add_arg_types(ufunc->uf_func_type,
3623 argcount + varargs,
3624 &ufunc->uf_type_list) == FAIL)
3625 return;
3626 ufunc->uf_func_type->tt_argcount = argcount + varargs;
3627 ufunc->uf_func_type->tt_min_argcount =
3628 argcount - ufunc->uf_def_args.ga_len;
3629 if (ufunc->uf_arg_types == NULL)
3630 {
3631 int i;
3632
3633 // lambda does not have argument types.
3634 for (i = 0; i < argcount; ++i)
3635 ufunc->uf_func_type->tt_args[i] = &t_any;
3636 }
3637 else
3638 mch_memmove(ufunc->uf_func_type->tt_args,
3639 ufunc->uf_arg_types, sizeof(type_T *) * argcount);
3640 if (varargs)
3641 {
3642 ufunc->uf_func_type->tt_args[argcount] =
Bram Moolenaar2a389082021-04-09 20:24:31 +02003643 ufunc->uf_va_type == NULL ? &t_list_any : ufunc->uf_va_type;
Bram Moolenaar6ff71d82020-05-24 23:45:24 +02003644 ufunc->uf_func_type->tt_flags = TTFLAG_VARARGS;
3645 }
3646 }
3647 else
3648 // No arguments, can use a predefined type.
3649 ufunc->uf_func_type = get_func_type(ufunc->uf_ret_type,
3650 argcount, &ufunc->uf_type_list);
3651}
3652
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003653/*
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003654 * Free all instructions for "dfunc" except df_name.
Bram Moolenaar20431c92020-03-20 18:39:46 +01003655 */
3656 static void
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01003657delete_def_function_contents(dfunc_T *dfunc, int mark_deleted)
Bram Moolenaar20431c92020-03-20 18:39:46 +01003658{
3659 int idx;
3660
3661 ga_clear(&dfunc->df_def_args_isn);
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +02003662 ga_clear_strings(&dfunc->df_var_names);
Bram Moolenaar20431c92020-03-20 18:39:46 +01003663
3664 if (dfunc->df_instr != NULL)
3665 {
3666 for (idx = 0; idx < dfunc->df_instr_count; ++idx)
3667 delete_instr(dfunc->df_instr + idx);
3668 VIM_CLEAR(dfunc->df_instr);
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01003669 dfunc->df_instr = NULL;
Bram Moolenaar20431c92020-03-20 18:39:46 +01003670 }
Bram Moolenaarc2dec4c2021-06-13 15:39:00 +02003671 if (dfunc->df_instr_debug != NULL)
3672 {
3673 for (idx = 0; idx < dfunc->df_instr_debug_count; ++idx)
3674 delete_instr(dfunc->df_instr_debug + idx);
3675 VIM_CLEAR(dfunc->df_instr_debug);
3676 dfunc->df_instr_debug = NULL;
3677 }
Bram Moolenaarc05fe072021-01-24 21:30:48 +01003678#ifdef FEAT_PROFILE
3679 if (dfunc->df_instr_prof != NULL)
3680 {
3681 for (idx = 0; idx < dfunc->df_instr_prof_count; ++idx)
3682 delete_instr(dfunc->df_instr_prof + idx);
3683 VIM_CLEAR(dfunc->df_instr_prof);
3684 dfunc->df_instr_prof = NULL;
3685 }
3686#endif
Bram Moolenaar20431c92020-03-20 18:39:46 +01003687
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01003688 if (mark_deleted)
3689 dfunc->df_deleted = TRUE;
3690 if (dfunc->df_ufunc != NULL)
3691 dfunc->df_ufunc->uf_def_status = UF_NOT_COMPILED;
Bram Moolenaar20431c92020-03-20 18:39:46 +01003692}
3693
3694/*
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02003695 * When a user function is deleted, clear the contents of any associated def
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003696 * function, unless another user function still uses it.
3697 * The position in def_functions can be re-used.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003698 */
3699 void
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003700unlink_def_function(ufunc_T *ufunc)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003701{
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02003702 if (ufunc->uf_dfunc_idx > 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003703 {
3704 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
3705 + ufunc->uf_dfunc_idx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003706
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003707 if (--dfunc->df_refcount <= 0)
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01003708 delete_def_function_contents(dfunc, TRUE);
Bram Moolenaar0cb5bcf2020-06-20 18:19:09 +02003709 ufunc->uf_def_status = UF_NOT_COMPILED;
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003710 ufunc->uf_dfunc_idx = 0;
3711 if (dfunc->df_ufunc == ufunc)
3712 dfunc->df_ufunc = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003713 }
3714}
3715
Bram Moolenaarfdeab652020-09-19 15:16:50 +02003716/*
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003717 * Used when a user function refers to an existing dfunc.
Bram Moolenaarfdeab652020-09-19 15:16:50 +02003718 */
3719 void
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003720link_def_function(ufunc_T *ufunc)
Bram Moolenaarfdeab652020-09-19 15:16:50 +02003721{
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003722 if (ufunc->uf_dfunc_idx > 0)
3723 {
3724 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
3725 + ufunc->uf_dfunc_idx;
Bram Moolenaarfdeab652020-09-19 15:16:50 +02003726
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003727 ++dfunc->df_refcount;
3728 }
Bram Moolenaarfdeab652020-09-19 15:16:50 +02003729}
3730
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003731#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaar20431c92020-03-20 18:39:46 +01003732/*
3733 * Free all functions defined with ":def".
3734 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003735 void
3736free_def_functions(void)
3737{
Bram Moolenaar20431c92020-03-20 18:39:46 +01003738 int idx;
3739
3740 for (idx = 0; idx < def_functions.ga_len; ++idx)
3741 {
3742 dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data) + idx;
3743
Bram Moolenaarcdc40c42020-12-26 17:43:08 +01003744 delete_def_function_contents(dfunc, TRUE);
Bram Moolenaarcd45ed02020-12-22 17:35:54 +01003745 vim_free(dfunc->df_name);
Bram Moolenaar20431c92020-03-20 18:39:46 +01003746 }
3747
3748 ga_clear(&def_functions);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003749}
3750#endif
3751
3752
3753#endif // FEAT_EVAL