# HG changeset patch # User Bram Moolenaar # Date 1583015404 -3600 # Node ID 8eeec8886c023feca12474cbdf8788aecbbf9c87 # Parent 59821eacb2ddd3e017884d552d5a76b337bbbc41 patch 8.2.0336: Vim9: insufficient test coverage for compiling Commit: https://github.com/vim/vim/commit/42a480bf7243ea8bce498264911e187931d083e5 Author: Bram Moolenaar Date: Sat Feb 29 23:23:47 2020 +0100 patch 8.2.0336: Vim9: insufficient test coverage for compiling Problem: Vim9: insufficient test coverage for compiling. Solution: Add more tests. diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim --- a/src/testdir/test_vim9_expr.vim +++ b/src/testdir/test_vim9_expr.vim @@ -9,6 +9,12 @@ func CheckDefFailure(line, error) call delete('Xdef') endfunc +func CheckDefFailureMult(lines, error) + call writefile(['def! Func()'] + a:lines + ['enddef'], 'Xdef') + call assert_fails('so Xdef', a:error, join(a:lines, ' | ')) + call delete('Xdef') +endfunc + " Check that "line" inside ":def" results in an "error" message when executed. func CheckDefExecFailure(line, error) call writefile(['def! Func()', a:line, 'enddef'], 'Xdef') @@ -805,6 +811,8 @@ func Test_expr7_fails() call CheckDefExecFailure("let x = +g:ablob", 'E974:') call CheckDefExecFailure("let x = +g:alist", 'E745:') call CheckDefExecFailure("let x = +g:adict", 'E728:') + + call CheckDefFailureMult(["let x = ''", "let y = x.memb"], 'E715:') endfunc let g:Funcrefs = [function('add')] diff --git a/src/testdir/test_vim9_script.vim b/src/testdir/test_vim9_script.vim --- a/src/testdir/test_vim9_script.vim +++ b/src/testdir/test_vim9_script.vim @@ -53,6 +53,10 @@ def Test_assignment() let dict4: dict = #{one: 1, two: '2'} let dict5: dict = #{one: 0z01, tw: 0z02} + if has('channel') + let chan1: channel + endif + g:newvar = 'new' assert_equal('new', g:newvar) @@ -91,6 +95,21 @@ func Test_assignment_failure() call CheckDefFailure(['let var = feedkeys("0")'], 'E1031:') call CheckDefFailure(['let var: number = feedkeys("0")'], 'expected number but got void') + + call CheckDefFailure(['let var: dict '], 'E1007:') + call CheckDefFailure(['let var: dictisn_arg.channel = channel; + + return OK; +} + +/* + * Generate an ISN_PUSHJOB instruction. + * Consumes "job". + */ + static int +generate_PUSHJOB(cctx_T *cctx, job_T *job) +{ + isn_T *isn; + + if ((isn = generate_instr_type(cctx, ISN_PUSHCHANNEL, &t_channel)) == NULL) + return FAIL; + isn->isn_arg.job = job; + + return OK; +} + +/* * Generate an ISN_PUSHBLOB instruction. * Consumes "blob". */ @@ -658,6 +690,22 @@ generate_PUSHBLOB(cctx_T *cctx, blob_T * } /* + * Generate an ISN_PUSHFUNC instruction with name "name". + * Consumes "name". + */ + static int +generate_PUSHFUNC(cctx_T *cctx, char_u *name) +{ + isn_T *isn; + + if ((isn = generate_instr_type(cctx, ISN_PUSHFUNC, &t_func_void)) == NULL) + return FAIL; + isn->isn_arg.string = name; + + return OK; +} + +/* * Generate an ISN_STORE instruction. */ static int @@ -3549,10 +3597,11 @@ compile_assignment(char_u *arg, exarg_T generate_PUSHBLOB(cctx, NULL); break; case VAR_FUNC: - // generate_PUSHS(cctx, NULL); TODO + generate_PUSHFUNC(cctx, NULL); break; case VAR_PARTIAL: - // generate_PUSHS(cctx, NULL); TODO + // generate_PUSHPARTIAL(cctx, NULL); + emsg("Partial type not supported yet"); break; case VAR_LIST: generate_NEWLIST(cctx, 0); @@ -3561,10 +3610,10 @@ compile_assignment(char_u *arg, exarg_T generate_NEWDICT(cctx, 0); break; case VAR_JOB: - // generate_PUSHS(cctx, NULL); TODO + generate_PUSHJOB(cctx, NULL); break; case VAR_CHANNEL: - // generate_PUSHS(cctx, NULL); TODO + generate_PUSHCHANNEL(cctx, NULL); break; case VAR_NUMBER: case VAR_UNKNOWN: @@ -4748,6 +4797,7 @@ compile_def_function(ufunc_T *ufunc, int int called_emsg_before = called_emsg; int ret = FAIL; sctx_T save_current_sctx = current_sctx; + int emsg_before = called_emsg; if (ufunc->uf_dfunc_idx >= 0) { @@ -4828,7 +4878,8 @@ compile_def_function(ufunc_T *ufunc, int ++line; else if (line != NULL && *line != NUL) { - semsg(_("E488: Trailing characters: %s"), line); + if (emsg_before == called_emsg) + semsg(_("E488: Trailing characters: %s"), line); goto erret; } else @@ -4844,6 +4895,7 @@ compile_def_function(ufunc_T *ufunc, int break; SOURCING_LNUM = ufunc->uf_script_ctx.sc_lnum + cctx.ctx_lnum + 1; } + emsg_before = called_emsg; had_return = FALSE; vim_memset(&ea, 0, sizeof(ea)); @@ -5153,6 +5205,7 @@ delete_instr(isn_T *isn) case ISN_PUSHS: case ISN_STOREENV: case ISN_STOREG: + case ISN_PUSHFUNC: vim_free(isn->isn_arg.string); break; @@ -5169,6 +5222,18 @@ delete_instr(isn_T *isn) blob_unref(isn->isn_arg.blob); break; + case ISN_PUSHPARTIAL: + // TODO + break; + + case ISN_PUSHJOB: + job_unref(isn->isn_arg.job); + break; + + case ISN_PUSHCHANNEL: + channel_unref(isn->isn_arg.channel); + break; + case ISN_UCALL: vim_free(isn->isn_arg.ufunc.cuf_name); break; diff --git a/src/vim9execute.c b/src/vim9execute.c --- a/src/vim9execute.c +++ b/src/vim9execute.c @@ -840,6 +840,10 @@ call_def_function( case ISN_PUSHF: case ISN_PUSHS: case ISN_PUSHBLOB: + case ISN_PUSHFUNC: + case ISN_PUSHPARTIAL: + case ISN_PUSHCHANNEL: + case ISN_PUSHJOB: if (ga_grow(&ectx.ec_stack, 1) == FAIL) goto failed; tv = STACK_TV_BOT(0); @@ -867,6 +871,29 @@ call_def_function( case ISN_PUSHBLOB: blob_copy(iptr->isn_arg.blob, tv); break; + case ISN_PUSHFUNC: + tv->v_type = VAR_FUNC; + tv->vval.v_string = vim_strsave(iptr->isn_arg.string); + break; + case ISN_PUSHPARTIAL: + tv->v_type = VAR_UNKNOWN; + break; + case ISN_PUSHCHANNEL: +#ifdef FEAT_JOB_CHANNEL + tv->v_type = VAR_CHANNEL; + tv->vval.v_channel = iptr->isn_arg.channel; + if (tv->vval.v_channel != NULL) + ++tv->vval.v_channel->ch_refcount; +#endif + break; + case ISN_PUSHJOB: +#ifdef FEAT_JOB_CHANNEL + tv->v_type = VAR_JOB; + tv->vval.v_job = iptr->isn_arg.job; + if (tv->vval.v_job != NULL) + ++tv->vval.v_job->jv_refcount; +#endif + break; default: tv->v_type = VAR_STRING; tv->vval.v_string = vim_strsave(iptr->isn_arg.string); @@ -1846,6 +1873,36 @@ ex_disassemble(exarg_T *eap) vim_free(tofree); } break; + case ISN_PUSHFUNC: + smsg("%4d PUSHFUNC \"%s\"", current, iptr->isn_arg.string); + break; + case ISN_PUSHPARTIAL: + // TODO + smsg("%4d PUSHPARTIAL", current); + break; + case ISN_PUSHCHANNEL: +#ifdef FEAT_JOB_CHANNEL + { + channel_T *channel = iptr->isn_arg.channel; + + smsg("%4d PUSHCHANNEL %d", current, + channel == NULL ? 0 : channel->ch_id); + } +#endif + break; + case ISN_PUSHJOB: +#ifdef FEAT_JOB_CHANNEL + { + typval_T tv; + char_u *name; + + tv.v_type = VAR_JOB; + tv.vval.v_job = iptr->isn_arg.job; + name = tv_get_string(&tv); + smsg("%4d PUSHJOB %s", current, name); + } +#endif + break; case ISN_PUSHEXC: smsg("%4d PUSH v:exception", current); break;