diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-10 15:58:41 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-10 15:58:41 (GMT) |
commit | c3c6e803684022dcc788ddbfc4a59a6d0dfde102 (patch) | |
tree | e059ae617b58faac8fe25b5c8b71697b13b788df /generic/tclCompile.c | |
parent | acf1cebeab93607fc83206e77534b5fada8726ef (diff) | |
download | tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.zip tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.tar.gz tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.tar.bz2 |
a different approach
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index ee67e24..c01571f 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -621,6 +621,10 @@ InstructionDesc const tclInstructionTable[] = { /* Push the identity of the current TclOO object (i.e., the name of * its current public access command) on the stack. */ + {"numericType", 1, 0, 0, {OPERAND_NONE}}, + /* Pushes the numeric type code of the word at the top of the stack. + * Stack: ... value => ... typeCode */ + {NULL, 0, 0, 0, {OPERAND_NONE}} }; |