summaryrefslogtreecommitdiffstats
path: root/src/vim9.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-11 20:26:34 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-11 20:26:34 +0200
commitcfc3023cb6ce5aaec13f49bc4b821feb05e3fb03 (patch)
treeda16e23aca547d7eb0cf4c4026415fad30d5b00f /src/vim9.h
parentaf8ea0d066d31cf3cd0a39c5c49ce0342728588d (diff)
patch 8.2.2756: Vim9: blob index and slice not implemented yetv8.2.2756
Problem: Vim9: blob index and slice not implemented yet. Solution: Implement blob index and slice.
Diffstat (limited to 'src/vim9.h')
-rw-r--r--src/vim9.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vim9.h b/src/vim9.h
index 0c8a949e87..c30e597adb 100644
--- a/src/vim9.h
+++ b/src/vim9.h
@@ -133,6 +133,8 @@ typedef enum {
ISN_LISTAPPEND, // append to a list, like add()
ISN_LISTINDEX, // [expr] list index
ISN_LISTSLICE, // [expr:expr] list slice
+ ISN_BLOBINDEX, // [expr] blob index
+ ISN_BLOBSLICE, // [expr:expr] blob slice
ISN_ANYINDEX, // [expr] runtime index
ISN_ANYSLICE, // [expr:expr] runtime slice
ISN_SLICE, // drop isn_arg.number items from start of list