diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-05-30 15:03:56 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-05-30 15:03:56 (GMT) |
commit | 4fad013842bba77cfb05f7f123ed77ff006d8c74 (patch) | |
tree | cfff63a211f06f2de572598136ae6438ca72ef5f /generic/tclCompile.h | |
parent | cc88c140a0a394a4427eb1b96c89546939ee599d (diff) | |
download | tcl-4fad013842bba77cfb05f7f123ed77ff006d8c74.zip tcl-4fad013842bba77cfb05f7f123ed77ff006d8c74.tar.gz tcl-4fad013842bba77cfb05f7f123ed77ff006d8c74.tar.bz2 |
cleanup in [expr] compiler
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 074cb91..8a04dac 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.26 2002/03/29 21:01:11 dgp Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.27 2002/05/30 15:03:57 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -223,18 +223,6 @@ typedef struct CompileEnv { * compiled code. Indexed by the string * representations of the literals. Used to * avoid creating duplicate objects. */ - int exprIsJustVarRef; /* Set 1 if the expression last compiled by - * TclCompileExpr consisted of just a - * variable reference as in the expression - * of "if $b then...". Otherwise 0. Used - * to implement expr's 2 level substitution - * semantics properly. */ - int exprIsComparison; /* Set 1 if the top-level operator in the - * expression last compiled is a comparison. - * Otherwise 0. If 1, since the operands - * might be strings, the expr is compiled - * out-of-line to implement expr's 2 level - * substitution semantics properly. */ unsigned char *codeStart; /* Points to the first byte of the code. */ unsigned char *codeNext; /* Points to next code array byte to use. */ unsigned char *codeEnd; /* Points just after the last allocated |