summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-16 16:07:01 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-16 16:07:01 +0100
commit351ead09dd365ebdee2bfa27ab22542d4920c779 (patch)
tree9db487e9482e7c44f4e2fd817c7f187b636ec9cf /src/evalfunc.c
parent7c886db915035bc064ca307f02c34ae9d99cc733 (diff)
patch 8.2.2362: Vim9: check of builtin function argument type is incompletev8.2.2362
Problem: Vim9: check of builtin function argument type is incomplete. Solution: Use need_type() instead of check_arg_type().
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c34
1 files changed, 28 insertions, 6 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 0e800c2b6f..61cca01f8a 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -275,6 +275,7 @@ typedef struct {
int arg_count; // actual argument count
type_T **arg_types; // list of argument types
int arg_idx; // current argument index (first arg is zero)
+ cctx_T *arg_cctx;
} argcontext_T;
// A function to check one argument type. The first argument is the type to
@@ -283,6 +284,22 @@ typedef struct {
typedef int (*argcheck_T)(type_T *, argcontext_T *);
/*
+ * Call need_type() to check an argument type.
+ */
+ static int
+check_arg_type(
+ type_T *expected,
+ type_T *actual,
+ argcontext_T *context)
+{
+ // TODO: would be useful to know if "actual" is a constant and pass it to
+ // need_type() to get a compile time error if possible.
+ return need_type(actual, expected,
+ context->arg_idx - context->arg_count, context->arg_idx + 1,
+ context->arg_cctx, FALSE, FALSE);
+}
+
+/*
* Check "type" is a float or a number.
*/
static int
@@ -301,7 +318,7 @@ arg_float_or_nr(type_T *type, argcontext_T *context)
static int
arg_number(type_T *type, argcontext_T *context)
{
- return check_arg_type(&t_number, type, context->arg_idx + 1);
+ return check_arg_type(&t_number, type, context);
}
/*
@@ -310,7 +327,7 @@ arg_number(type_T *type, argcontext_T *context)
static int
arg_string(type_T *type, argcontext_T *context)
{
- return check_arg_type(&t_string, type, context->arg_idx + 1);
+ return check_arg_type(&t_string, type, context);
}
/*
@@ -348,7 +365,7 @@ arg_same_as_prev(type_T *type, argcontext_T *context)
{
type_T *prev_type = context->arg_types[context->arg_idx - 1];
- return check_arg_type(prev_type, type, context->arg_idx + 1);
+ return check_arg_type(prev_type, type, context);
}
/*
@@ -362,7 +379,7 @@ arg_same_struct_as_prev(type_T *type, argcontext_T *context)
type_T *prev_type = context->arg_types[context->arg_idx - 1];
if (prev_type->tt_type != context->arg_types[context->arg_idx]->tt_type)
- return check_arg_type(prev_type, type, context->arg_idx + 1);
+ return check_arg_type(prev_type, type, context);
return OK;
}
@@ -384,7 +401,7 @@ arg_item_of_prev(type_T *type, argcontext_T *context)
// probably VAR_ANY, can't check
return OK;
- return check_arg_type(expected, type, context->arg_idx + 1);
+ return check_arg_type(expected, type, context);
}
/*
@@ -1931,7 +1948,11 @@ internal_func_name(int idx)
* Return FAIL and gives an error message when a type is wrong.
*/
int
-internal_func_check_arg_types(type_T **types, int idx, int argcount)
+internal_func_check_arg_types(
+ type_T **types,
+ int idx,
+ int argcount,
+ cctx_T *cctx)
{
argcheck_T *argchecks = global_functions[idx].f_argcheck;
int i;
@@ -1942,6 +1963,7 @@ internal_func_check_arg_types(type_T **types, int idx, int argcount)
context.arg_count = argcount;
context.arg_types = types;
+ context.arg_cctx = cctx;
for (i = 0; i < argcount; ++i)
if (argchecks[i] != NULL)
{