comparison src/vim9.h @ 28625:56860e29ce5d v8.2.4836

patch 8.2.4836: Vim9: some lines not covered by tests Commit: https://github.com/vim/vim/commit/f6ced9863f931758a4cee0b6546e77d21150806d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 28 12:00:49 2022 +0100 patch 8.2.4836: Vim9: some lines not covered by tests Problem: Vim9: some lines not covered by tests. Solution: Remove dead code. Add disassemble tests.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Apr 2022 13:15:04 +0200
parents 333be301dfe8
children d0241e74bfdb
comparison
equal deleted inserted replaced
28624:cfe842c7e379 28625:56860e29ce5d
237 typedef enum { 237 typedef enum {
238 JUMP_ALWAYS, 238 JUMP_ALWAYS,
239 JUMP_NEVER, 239 JUMP_NEVER,
240 JUMP_IF_FALSE, // pop and jump if false 240 JUMP_IF_FALSE, // pop and jump if false
241 JUMP_AND_KEEP_IF_TRUE, // jump if top of stack is truthy, drop if not 241 JUMP_AND_KEEP_IF_TRUE, // jump if top of stack is truthy, drop if not
242 JUMP_AND_KEEP_IF_FALSE, // jump if top of stack is falsy, drop if not
243 JUMP_IF_COND_TRUE, // jump if top of stack is true, drop if not 242 JUMP_IF_COND_TRUE, // jump if top of stack is true, drop if not
244 JUMP_IF_COND_FALSE, // jump if top of stack is false, drop if not 243 JUMP_IF_COND_FALSE, // jump if top of stack is false, drop if not
245 } jumpwhen_T; 244 } jumpwhen_T;
246 245
247 // arguments to ISN_JUMP 246 // arguments to ISN_JUMP