comparison src/vim9.h @ 19964:6765a88e72a5 v8.2.0538

patch 8.2.0538: Vim9: VAR_PARTIAL is not used during compilation Commit: https://github.com/vim/vim/commit/9c8bb7c0e251be2cca409055bd415266f57f013a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 9 21:08:09 2020 +0200 patch 8.2.0538: Vim9: VAR_PARTIAL is not used during compilation Problem: Vim9: VAR_PARTIAL is not used during compilation. Solution: Remove VAR_PARTIAL.
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Apr 2020 21:15:03 +0200
parents d4fa9db88d16
children 7fc5d62fe2a5
comparison
equal deleted inserted replaced
19963:15a32e680c2b 19964:6765a88e72a5
44 ISN_PUSHSPEC, // push special value isn_arg.number 44 ISN_PUSHSPEC, // push special value isn_arg.number
45 ISN_PUSHF, // push float isn_arg.fnumber 45 ISN_PUSHF, // push float isn_arg.fnumber
46 ISN_PUSHS, // push string isn_arg.string 46 ISN_PUSHS, // push string isn_arg.string
47 ISN_PUSHBLOB, // push blob isn_arg.blob 47 ISN_PUSHBLOB, // push blob isn_arg.blob
48 ISN_PUSHFUNC, // push func isn_arg.string 48 ISN_PUSHFUNC, // push func isn_arg.string
49 ISN_PUSHPARTIAL, // push partial ?
50 ISN_PUSHCHANNEL, // push channel isn_arg.channel 49 ISN_PUSHCHANNEL, // push channel isn_arg.channel
51 ISN_PUSHJOB, // push channel isn_arg.job 50 ISN_PUSHJOB, // push channel isn_arg.job
52 ISN_NEWLIST, // push list from stack items, size is isn_arg.number 51 ISN_NEWLIST, // push list from stack items, size is isn_arg.number
53 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number 52 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number
54 53
90 ISN_COMPARESTRING, 89 ISN_COMPARESTRING,
91 ISN_COMPAREBLOB, 90 ISN_COMPAREBLOB,
92 ISN_COMPARELIST, 91 ISN_COMPARELIST,
93 ISN_COMPAREDICT, 92 ISN_COMPAREDICT,
94 ISN_COMPAREFUNC, 93 ISN_COMPAREFUNC,
95 ISN_COMPAREPARTIAL,
96 ISN_COMPAREANY, 94 ISN_COMPAREANY,
97 95
98 // expression operations 96 // expression operations
99 ISN_CONCAT, 97 ISN_CONCAT,
100 ISN_INDEX, // [expr] list index 98 ISN_INDEX, // [expr] list index