diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-02 18:13:20 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-02 18:13:20 (GMT) |
commit | ce7c13b7962d2ebcd432dfb05fffe812c4d172d2 (patch) | |
tree | 51f3474d6aea4c638b7abdc0ee79609ab7fccd98 /generic/tclCompile.h | |
parent | a7dc229d16889c9f6f66d197d4e0bf1afbec5578 (diff) | |
download | tcl-ce7c13b7962d2ebcd432dfb05fffe812c4d172d2.zip tcl-ce7c13b7962d2ebcd432dfb05fffe812c4d172d2.tar.gz tcl-ce7c13b7962d2ebcd432dfb05fffe812c4d172d2.tar.bz2 |
Added more TclOO introspection bytecodes ([info object class], [info object namespace]). Also moved TclOO-in-8.6 to using the main Tcl internal ensemble builder.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 08d59fd..a31a33b 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -699,9 +699,11 @@ typedef struct ByteCode { #define INST_INFO_LEVEL_ARGS 151 #define INST_RESOLVE_COMMAND 152 #define INST_TCLOO_SELF 153 +#define INST_TCLOO_CLASS 154 +#define INST_TCLOO_NS 155 /* The last opcode */ -#define LAST_INST_OPCODE 153 +#define LAST_INST_OPCODE 155 /* * Table describing the Tcl bytecode instructions: their name (for displaying |