comparison src/vim9.h @ 28156:088d8dc22045 v8.2.4602

patch 8.2.4602: Vim9: not enough test coverage for executing :def function Commit: https://github.com/vim/vim/commit/397a87ac1c9857eb0d5ec3add69e3b9ab6b0c77c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 20 21:14:15 2022 +0000 patch 8.2.4602: Vim9: not enough test coverage for executing :def function Problem: Vim9: not enough test coverage for executing :def function. Solution: Add a few more tests. Fix uncovered problem. Remove dead code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Mar 2022 22:15:02 +0100
parents 3bc0a639dfb0
children 662d2d5db9a6
comparison
equal deleted inserted replaced
28155:42ba8af8a1dd 28156:088d8dc22045
85 ISN_PUSHSPEC, // push special value isn_arg.number 85 ISN_PUSHSPEC, // push special value isn_arg.number
86 ISN_PUSHF, // push float isn_arg.fnumber 86 ISN_PUSHF, // push float isn_arg.fnumber
87 ISN_PUSHS, // push string isn_arg.string 87 ISN_PUSHS, // push string isn_arg.string
88 ISN_PUSHBLOB, // push blob isn_arg.blob 88 ISN_PUSHBLOB, // push blob isn_arg.blob
89 ISN_PUSHFUNC, // push func isn_arg.string 89 ISN_PUSHFUNC, // push func isn_arg.string
90 ISN_PUSHCHANNEL, // push channel isn_arg.channel 90 ISN_PUSHCHANNEL, // push NULL channel
91 ISN_PUSHJOB, // push channel isn_arg.job 91 ISN_PUSHJOB, // push NULL job
92 ISN_NEWLIST, // push list from stack items, size is isn_arg.number 92 ISN_NEWLIST, // push list from stack items, size is isn_arg.number
93 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number 93 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number
94 ISN_NEWPARTIAL, // push NULL partial 94 ISN_NEWPARTIAL, // push NULL partial
95 95
96 ISN_AUTOLOAD, // get item from autoload import, function or variable 96 ISN_AUTOLOAD, // get item from autoload import, function or variable