summaryrefslogtreecommitdiffstats
path: root/src/proto/vim9instr.pro
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-01-01 20:18:36 +0100
committerChristian Brabandt <cb@256bit.org>2024-01-01 20:19:09 +0100
commit6a950da86d7a6eb09d5ebeab17657986420d07ac (patch)
tree4eab3b46f36ec05bf92d042f740e161a7707d1cd /src/proto/vim9instr.pro
parent10b4f75d4c03c1cd4f579be5fdc812ba41b72fef (diff)
patch 9.0.2190: proto files need updatev9.0.2190
Problem: proto files need update Solution: re-generate them Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/proto/vim9instr.pro')
-rw-r--r--src/proto/vim9instr.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/vim9instr.pro b/src/proto/vim9instr.pro
index 58786273d0..0fb449d991 100644
--- a/src/proto/vim9instr.pro
+++ b/src/proto/vim9instr.pro
@@ -18,6 +18,7 @@ int generate_2BOOL(cctx_T *cctx, int invert, int offset);
int generate_COND2BOOL(cctx_T *cctx);
int generate_TYPECHECK(cctx_T *cctx, type_T *expected, int number_ok, int offset, int is_var, int argidx);
int generate_SETTYPE(cctx_T *cctx, type_T *expected);
+int generate_PUSHOBJ(cctx_T *cctx);
int generate_tv_PUSH(cctx_T *cctx, typval_T *tv);
int generate_PUSHNR(cctx_T *cctx, varnumber_T number);
int generate_PUSHBOOL(cctx_T *cctx, varnumber_T number);
@@ -28,7 +29,6 @@ int generate_PUSHCHANNEL(cctx_T *cctx);
int generate_PUSHJOB(cctx_T *cctx);
int generate_PUSHBLOB(cctx_T *cctx, blob_T *blob);
int generate_PUSHFUNC(cctx_T *cctx, char_u *name, type_T *type, int may_prefix);
-int generate_PUSHOBJ(cctx_T *cctx);
int generate_AUTOLOAD(cctx_T *cctx, char_u *name, type_T *type);
int generate_GETITEM(cctx_T *cctx, int index, int with_op);
int generate_SLICE(cctx_T *cctx, int count);