diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:34:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:34:36 (GMT) |
commit | cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2 (patch) | |
tree | 72d036a8e1b318a022447f968b7a58b12d6e9598 /generic/tclInt.h | |
parent | 259635cd9b7b5e6be9e1bc44a5d2a7d3a2536743 (diff) | |
download | tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.zip tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.tar.gz tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.tar.bz2 |
Added compilation of [array exists], [array set] and [array unset]. Fixed a whole bunch of issues with opcode issuing that were causing problems with stack depth calculations.merge_to_trunk
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 7dc21c1..1d04c82 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3491,6 +3491,15 @@ MODULE_SCOPE int Tcl_WhileObjCmd(ClientData clientData, MODULE_SCOPE int TclCompileAppendCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileArrayExistsCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileArraySetCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileArrayUnsetCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileBreakCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |