diff options
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index a08a93a..d6d515d 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -791,12 +791,15 @@ typedef struct ByteCode { #define INST_ORIGIN_COMMAND 178 #define INST_TCLOO_NEXT 179 +#define INST_TCLOO_NEXT_CLASS 180 -#define INST_NUM_TYPE 180 -#define INST_TRY_CVT_TO_BOOLEAN 181 +#define INST_YIELD_TO_INVOKE 181 + +#define INST_NUM_TYPE 182 +#define INST_TRY_CVT_TO_BOOLEAN 183 /* The last opcode */ -#define LAST_INST_OPCODE 181 +#define LAST_INST_OPCODE 183 /* * Table describing the Tcl bytecode instructions: their name (for displaying |