diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-01 20:40:55 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-01 20:40:55 (GMT) |
commit | 8324cc91dbdb33bfd5799067e96c62769b8fb9c9 (patch) | |
tree | c90a2e185468443f2a0436c84d413717c3ea8486 /generic/tclCompile.h | |
parent | a7dc229d16889c9f6f66d197d4e0bf1afbec5578 (diff) | |
download | tcl-8324cc91dbdb33bfd5799067e96c62769b8fb9c9.zip tcl-8324cc91dbdb33bfd5799067e96c62769b8fb9c9.tar.gz tcl-8324cc91dbdb33bfd5799067e96c62769b8fb9c9.tar.bz2 |
Working towards a BCCed [next].
This version <i>almost</i> works, except for a problem with restoring the
context namespace upon return (which produces very strange results!)
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 08d59fd..e623e87 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -698,10 +698,13 @@ typedef struct ByteCode { #define INST_INFO_LEVEL_NUM 150 #define INST_INFO_LEVEL_ARGS 151 #define INST_RESOLVE_COMMAND 152 + +/* For compilation relating to TclOO */ #define INST_TCLOO_SELF 153 +#define INST_TCLOO_NEXT 154 /* The last opcode */ -#define LAST_INST_OPCODE 153 +#define LAST_INST_OPCODE 154 /* * Table describing the Tcl bytecode instructions: their name (for displaying |