diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-01 20:40:55 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-01 20:40:55 (GMT) |
| commit | f6d9b35b1e1383315af919cd15e94e8dc7fffcda (patch) | |
| tree | c90a2e185468443f2a0436c84d413717c3ea8486 /generic/tclCompile.h | |
| parent | d72c1c681d561ca1b22fb51b56d06856c12e8b4e (diff) | |
| download | tcl-f6d9b35b1e1383315af919cd15e94e8dc7fffcda.zip tcl-f6d9b35b1e1383315af919cd15e94e8dc7fffcda.tar.gz tcl-f6d9b35b1e1383315af919cd15e94e8dc7fffcda.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 |
