view src/typemap @ 19878:dd3c80122a0e v8.2.0495

patch 8.2.0495: Vim9: some code not tested Commit: https://github.com/vim/vim/commit/80c34ca312506c2c65eef6b119e214f7e6f87eb9 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 1 23:05:18 2020 +0200 patch 8.2.0495: Vim9: some code not tested Problem: Vim9: some code not tested. Solution: Add more tests. Support more const expressions.
author Bram Moolenaar <Bram@vim.org>
date Wed, 01 Apr 2020 23:15:03 +0200
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}\")