diff options
author | dgp <dgp@users.sourceforge.net> | 2007-08-06 20:20:59 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-08-06 20:20:59 (GMT) |
commit | 6defebeafdc2b6272b3a90a42a80de6e53225cfc (patch) | |
tree | d4236aa1c2cb95109767a51731d7177898c49a6f /tests | |
parent | d8bf2f02b72a097b5669a09b66a62f75d7952850 (diff) | |
download | tcl-6defebeafdc2b6272b3a90a42a80de6e53225cfc.zip tcl-6defebeafdc2b6272b3a90a42a80de6e53225cfc.tar.gz tcl-6defebeafdc2b6272b3a90a42a80de6e53225cfc.tar.bz2 |
* tests/parseExpr.test: Update source file name of expr parser code.
* generic/tclCompExpr.c: Added a "mark" field to the OpNode
struct, which is used to guide tree traversal. This field costs
nothing since alignement requirements used the memory already.
Rewrote ConvertTreeToTokens() to use the new field, which permitted
consolidation of utility routines CopyTokens() and
GenerateTokensForLiteral().
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parseExpr.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/parseExpr.test b/tests/parseExpr.test index f89727d..3a79fcb 100644 --- a/tests/parseExpr.test +++ b/tests/parseExpr.test @@ -1,5 +1,5 @@ # This file contains a collection of tests for the procedures in the -# file tclParseExpr.c. Sourcing this file into Tcl runs the tests and +# file tclCompExpr.c. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # # Copyright (c) 1997 Sun Microsystems, Inc. @@ -8,14 +8,14 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: parseExpr.test,v 1.26 2007/07/16 19:50:46 dgp Exp $ +# RCS: @(#) $Id: parseExpr.test,v 1.27 2007/08/06 20:21:00 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 namespace import -force ::tcltest::* } -# Note that the Tcl expression parser (tclParseExpr.c) does not check +# Note that the Tcl expression parser (tclCompExpr.c) does not check # the semantic validity of the expressions it parses. It does not check, # for example, that a math function actually exists, or that the operands # of "<<" are integers. |