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 | acd9d784587b6767a3f9635251808a583dc11b09 (patch) | |
tree | 51f3474d6aea4c638b7abdc0ee79609ab7fccd98 /generic/tclInt.h | |
parent | d82d84f00427920f30c549a88bb8ad726a93523f (diff) | |
download | tcl-acd9d784587b6767a3f9635251808a583dc11b09.zip tcl-acd9d784587b6767a3f9635251808a583dc11b09.tar.gz tcl-acd9d784587b6767a3f9635251808a583dc11b09.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/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 1fffa1f..06bcd95 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3575,6 +3575,12 @@ MODULE_SCOPE int TclCompileInfoExistsCmd(Tcl_Interp *interp, MODULE_SCOPE int TclCompileInfoLevelCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileInfoObjectClassCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileInfoObjectNamespaceCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileIncrCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |