comparison src/vim9execute.c @ 19316:17dc6282f370 v8.2.0216

patch 8.2.0216: several Vim9 instructions are not tested Commit: https://github.com/vim/vim/commit/ff80cb6807d99db35cc928f151b87503b2928e19 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 5 22:10:05 2020 +0100 patch 8.2.0216: several Vim9 instructions are not tested Problem: Several Vim9 instructions are not tested. Solution: Add more tests. Fix :disassamble output. Make catch with pattern work.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Feb 2020 22:15:03 +0100
parents 2a63b7f5802a
children e99e6d794597
comparison
equal deleted inserted replaced
19315:2a0fe5461ae5 19316:17dc6282f370
1724 char_u *r; 1724 char_u *r;
1725 char_u numbuf[NUMBUFLEN]; 1725 char_u numbuf[NUMBUFLEN];
1726 char_u *tofree; 1726 char_u *tofree;
1727 1727
1728 r = blob2string(iptr->isn_arg.blob, &tofree, numbuf); 1728 r = blob2string(iptr->isn_arg.blob, &tofree, numbuf);
1729 smsg("%4d PUSHBLOB \"%s\"", current, r); 1729 smsg("%4d PUSHBLOB %s", current, r);
1730 vim_free(tofree); 1730 vim_free(tofree);
1731 } 1731 }
1732 break; 1732 break;
1733 case ISN_PUSHEXC: 1733 case ISN_PUSHEXC:
1734 smsg("%4d PUSH v:exception", current); 1734 smsg("%4d PUSH v:exception", current);