comparison src/vim9.h @ 28621:333be301dfe8 v8.2.4834

patch 8.2.4834: Vim9: some lines not covered by tests Commit: https://github.com/vim/vim/commit/06651630ee35111839e627e1bcbac94b86347883 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 27 17:54:25 2022 +0100 patch 8.2.4834: Vim9: some lines not covered by tests Problem: Vim9: some lines not covered by tests. Solution: Add a few more tests. Remove dead code.
author Bram Moolenaar <Bram@vim.org>
date Wed, 27 Apr 2022 19:00:03 +0200
parents d550054e1328
children 56860e29ce5d
comparison
equal deleted inserted replaced
28620:4d76b3e07c07 28621:333be301dfe8
171 ISN_COND2BOOL, // convert value to bool 171 ISN_COND2BOOL, // convert value to bool
172 ISN_2STRING, // convert value to string at isn_arg.tostring on stack 172 ISN_2STRING, // convert value to string at isn_arg.tostring on stack
173 ISN_2STRING_ANY, // like ISN_2STRING but check type 173 ISN_2STRING_ANY, // like ISN_2STRING but check type
174 ISN_NEGATENR, // apply "-" to number 174 ISN_NEGATENR, // apply "-" to number
175 175
176 ISN_CHECKNR, // check value can be used as a number
177 ISN_CHECKTYPE, // check value type is isn_arg.type.ct_type 176 ISN_CHECKTYPE, // check value type is isn_arg.type.ct_type
178 ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len 177 ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len
179 ISN_SETTYPE, // set dict type to isn_arg.type.ct_type 178 ISN_SETTYPE, // set dict type to isn_arg.type.ct_type
180 179
181 ISN_CLEARDICT, // clear dict saved by ISN_MEMBER/ISN_STRINGMEMBER 180 ISN_CLEARDICT, // clear dict saved by ISN_MEMBER/ISN_STRINGMEMBER