diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-08 15:39:37 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-08 15:39:37 (GMT) |
commit | b8ad7e6569c1ac14d88d993310013ae3095d00b1 (patch) | |
tree | 8013273a78ab046ca1744309207ab85ea5ab26c9 /generic/tclCompile.h | |
parent | 4b9c1da0d3b0ca6029c1fe83989006927422d95d (diff) | |
download | tcl-b8ad7e6569c1ac14d88d993310013ae3095d00b1.zip tcl-b8ad7e6569c1ac14d88d993310013ae3095d00b1.tar.gz tcl-b8ad7e6569c1ac14d88d993310013ae3095d00b1.tar.bz2 |
Core of implementation of TIP#201 ('in' and 'ni' operators)
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 4654d2b..2734b5f 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.48 2004/09/26 16:36:04 msofer Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.49 2004/10/08 15:39:53 dkf Exp $ */ #ifndef _TCLCOMPILATION @@ -544,8 +544,11 @@ typedef struct ByteCode { #define INST_START_CMD 105 +#define INST_LIST_IN 106 +#define INST_LIST_NOT_IN 107 + /* The last opcode */ -#define LAST_INST_OPCODE 105 +#define LAST_INST_OPCODE 107 /* * Table describing the Tcl bytecode instructions: their name (for |