diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-05 14:34:36 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-05 14:34:36 (GMT) |
| commit | 66b24d00d2ee7ba43951478b4d69ddf617cd6343 (patch) | |
| tree | 72d036a8e1b318a022447f968b7a58b12d6e9598 /generic/tclCompile.h | |
| parent | a51cacdcf339695aa08dadad3964a220e74a57dc (diff) | |
| download | tcl-66b24d00d2ee7ba43951478b4d69ddf617cd6343.zip tcl-66b24d00d2ee7ba43951478b4d69ddf617cd6343.tar.gz tcl-66b24d00d2ee7ba43951478b4d69ddf617cd6343.tar.bz2 | |
Added compilation of [array exists], [array set] and [array unset]. Fixed a whole bunch of issues with opcode issuing that were causing problems with stack depth calculations.
Diffstat (limited to 'generic/tclCompile.h')
| -rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b080d33..3302f9b 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -705,8 +705,14 @@ typedef struct ByteCode { #define INST_TCLOO_NS 157 #define INST_TCLOO_IS_OBJECT 158 +/* For compilation of [array] subcommands */ +#define INST_ARRAY_EXISTS_STK 159 +#define INST_ARRAY_EXISTS_IMM 160 +#define INST_ARRAY_MAKE_STK 161 +#define INST_ARRAY_MAKE_IMM 162 + /* The last opcode */ -#define LAST_INST_OPCODE 158 +#define LAST_INST_OPCODE 162 /* * Table describing the Tcl bytecode instructions: their name (for displaying |
