Not part of regular build. Removed WildCardExpr, updated all necessary files.

Removed Token::WILD_CARD. Wild cards are handled in ElementExpr and
AttributeExpr accordingly.


git-svn-id: svn://10.0.0.236/trunk@85269 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kvisco%ziplink.net
2001-01-22 09:36:19 +00:00
parent e8e57c1c2e
commit a85626b345
16 changed files with 267 additions and 323 deletions

View File

@@ -21,12 +21,12 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: LocationStep.cpp,v 1.3 2001-01-12 20:06:34 axel%pike.org Exp $
* $Id: LocationStep.cpp,v 1.4 2001-01-22 09:36:17 kvisco%ziplink.net Exp $
*/
/*
Implementation of an XPath LocationStep
@version $Revision: 1.3 $ $Date: 2001-01-12 20:06:34 $
@version $Revision: 1.4 $ $Date: 2001-01-22 09:36:17 $
*/
#include "Expr.h"
@@ -281,6 +281,9 @@ void LocationStep::toString(String& str) {
case ANCESTOR_OR_SELF_AXIS :
str.append("ancestor-or-self::");
break;
case ATTRIBUTE_AXIS:
str.append("attribute::");
break;
case DESCENDANT_AXIS:
str.append("descendant::");
break;