Searched refs:want_type (Results 1 – 2 of 2) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | eval.c | 3272 type_T *want_type = NULL; in eval7t() local 3284 want_type = parse_type(arg, &type_list, TRUE); in eval7t() 3285 if (want_type == NULL && (evaluate || **arg != '>')) in eval7t() 3306 if (want_type != NULL && evaluate) in eval7t() 3312 if (!equal_type(want_type, actual, 0)) in eval7t() 3314 if (want_type == &t_bool && actual != &t_bool in eval7t() 3329 res = check_type(want_type, actual, TRUE, where); in eval7t()
|
| H A D | vim9compile.c | 4896 type_T *want_type = NULL; in compile_expr7t() local 4902 want_type = parse_type(arg, cctx->ctx_type_list, TRUE); in compile_expr7t() 4903 if (want_type == NULL) in compile_expr7t() 4922 if (want_type != NULL) in compile_expr7t() 4930 if (check_type(want_type, actual, FALSE, where) == FAIL) in compile_expr7t() 4932 if (need_type(actual, want_type, -1, 0, cctx, FALSE, FALSE) == FAIL) in compile_expr7t()
|