view src/typemap @ 23662:c761fcb89dfe v8.2.2373

patch 8.2.2373: Vim9: list assignment only accepts a number index Commit: https://github.com/vim/vim/commit/f30a14db3b26e510f193f50ee0dd8a41303e4740 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 17 21:51:24 2021 +0100 patch 8.2.2373: Vim9: list assignment only accepts a number index Problem: Vim9: list assignment only accepts a number index. Solution: Accept "any" and do a runtime type check. (closes https://github.com/vim/vim/issues/7694)
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Jan 2021 22:00:04 +0100
parents dec4338a7da2
children
line wrap: on
line source

TYPEMAP
VIWIN	T_VIOBJNOMUNGE
VIBUF	T_VIOBJNOMUNGE

INPUT
T_VIOBJNOMUNGE
	if (sv_isa($arg, \"${ntype}\")) {
	    IV tmp = SvIV((SV*)SvRV($arg));
	    $var = INT2PTR($type, tmp);
	    if (!tmp)
		croak(\"$ntype no longer exists\");
	}
	else
	    croak(\"$var is not of type ${ntype}\")