Problem: Vim9: type is not checked when assigning to a script variable.
Solution: Check the type.
|| var_check_lock(di->di_tv.v_lock, name, FALSE))
return;
- if ((flags & LET_NO_COMMAND) == 0
- && is_script_local
- && current_sctx.sc_version == SCRIPT_VERSION_VIM9)
+ if (is_script_local
+ && current_sctx.sc_version == SCRIPT_VERSION_VIM9)
{
- semsg(_("E1041: Redefining script item %s"), name);
- return;
+ if ((flags & LET_NO_COMMAND) == 0)
+ {
+ semsg(_("E1041: Redefining script item %s"), name);
+ return;
+ }
+
+ // check the type
+ check_script_var_type(&di->di_tv, tv, name);
}
}
else
/* vim9compile.c */
int check_defined(char_u *p, int len, cctx_T *cctx);
+type_T *typval2type(typval_T *tv);
+int check_type(type_T *expected, type_T *actual, int give_msg);
char_u *skip_type(char_u *start);
type_T *parse_type(char_u **arg, garray_T *type_gap);
char *vartype_name(vartype_T type);
int find_exported(int sid, char_u **argp, int *name_len, ufunc_T **ufunc, type_T **type);
char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, void *cctx);
char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
+void check_script_var_type(typval_T *dest, typval_T *value, char_u *name);
/* vim: set ft=c : */
unlet g:var_test
enddef
+def Test_let_type_check()
+ let lines =<< trim END
+ vim9script
+ let var: string
+ var = 1234
+ END
+ CheckScriptFailure(lines, 'E1013:')
+enddef
+
def Test_forward_declaration()
let lines =<< trim END
vim9script
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 973,
/**/
972,
/**/
static void delete_def_function_contents(dfunc_T *dfunc);
static void arg_type_mismatch(type_T *expected, type_T *actual, int argidx);
-static int check_type(type_T *expected, type_T *actual, int give_msg);
/*
* Lookup variable "name" in the local scope and return it.
/*
* Return the type_T for a typval. Only for primitive types.
*/
- static type_T *
+ type_T *
typval2type(typval_T *tv)
{
if (tv->v_type == VAR_NUMBER)
* Check if the expected and actual types match.
* Does not allow for assigning "any" to a specific type.
*/
- static int
+ int
check_type(type_T *expected, type_T *actual, int give_msg)
{
int ret = OK;
return p;
}
+/*
+ * Check if the type of script variable "dest" allows assigning "value".
+ */
+ void
+check_script_var_type(typval_T *dest, typval_T *value, char_u *name)
+{
+ scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
+ int idx;
+
+ // Find the svar_T in sn_var_vals.
+ for (idx = 0; idx < si->sn_var_vals.ga_len; ++idx)
+ {
+ svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + idx;
+
+ if (sv->sv_tv == dest)
+ {
+ if (sv->sv_const)
+ semsg(_(e_readonlyvar), name);
+ else
+ check_type(sv->sv_type, typval2type(value), TRUE);
+ return;
+ }
+ }
+ iemsg("check_script_var_type(): not found");
+}
#endif // FEAT_EVAL