view src/proto/vim9execute.pro @ 23525:54ec7c8b7459 v8.2.2305

patch 8.2.2305: Vim9: "++var" and "--var" are silently accepted Commit: https://github.com/vim/vim/commit/b23279d7a2d28de5df942924b77cf23672fc684f Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 5 22:08:20 2021 +0100 patch 8.2.2305: Vim9: "++var" and "--var" are silently accepted Problem: Vim9: "++var" and "--var" are silently accepted. Solution: Give an error message.
author Bram Moolenaar <Bram@vim.org>
date Tue, 05 Jan 2021 22:15:04 +0100
parents 112fa621b127
children 1bb7fa4f9b35
line wrap: on
line source

/* vim9execute.c */
void to_string_error(vartype_T vartype);
void funcstack_check_refcount(funcstack_T *funcstack);
int fill_partial_and_closure(partial_T *pt, ufunc_T *ufunc, ectx_T *ectx);
int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
void ex_disassemble(exarg_T *eap);
int tv2bool(typval_T *tv);
void emsg_using_string_as(typval_T *tv, int as_number);
int check_not_string(typval_T *tv);
/* vim: set ft=c : */