summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/expr/qexpression_p.h
diff options
context:
space:
mode:
authorDavid E. Narvaez <david.narvaez@computer.org>2015-06-21 22:24:39 -0400
committerErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-07-29 07:51:22 +0000
commitd17eba9d34f412e592c3b049c6c14fd9ccada87b (patch)
tree32f16a5ae2272b7d5dfa6c25b53b8aa06cf98330 /src/xmlpatterns/expr/qexpression_p.h
parent69c539045191d02a07ff3471bd37486ccf226b18 (diff)
downloadqtxmlpatterns-d17eba9d34f412e592c3b049c6c14fd9ccada87b.tar.gz
Iterate Over the Items (Not the Operands) of a Literal Sequence
The current code iterates over the (empty) list of operands of a Literal Sequence, ignoring any items in it, so Literal Sequences are always ignored in the ExpressionSequence. Task-number: QTBUG-35897 Change-Id: I60341ac21c8e3b77bf6d8dfeebdbafe010844406 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'src/xmlpatterns/expr/qexpression_p.h')
-rw-r--r--src/xmlpatterns/expr/qexpression_p.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xmlpatterns/expr/qexpression_p.h b/src/xmlpatterns/expr/qexpression_p.h
index c799725..7a7899f 100644
--- a/src/xmlpatterns/expr/qexpression_p.h
+++ b/src/xmlpatterns/expr/qexpression_p.h
@@ -375,11 +375,16 @@ namespace QPatternist
IDExistsFN,
/**
- * Identifies ExpressionSequence and LiteralSequence.
+ * Identifies ExpressionSequence.
*/
IDExpressionSequence,
/**
+ * Identifies LiteralSequence.
+ */
+ IDLiteralSequence,
+
+ /**
* Identifies GeneralComparison.
*/
IDGeneralComparison,