Code Monkey home page Code Monkey logo

Comments (4)

mildred avatar mildred commented on June 12, 2024

It seems caused by the childQuery not checking the predicate on its Input directly and wanting to iterate to children before. I believe this change should fix the issue:

diff --git a/query.go b/query.go
index fe2633f..d3ef543 100644
--- a/query.go
+++ b/query.go
@@ -198,6 +198,9 @@ func (c *childQuery) Select(t iterator) NodeNavigator {
                        node = node.Copy()
                        first := true
                        c.iterator = func() NodeNavigator {
+                               if c.Predicate(node) {
+                                       return node
+                               }
                                for {
                                        if first {
						if !node.MoveToChild() {

from xpath.

mildred avatar mildred commented on June 12, 2024

Perhaps there are legitimate cases where we want to check for children and not the current node, but // means /descendant-or-self::node()/ (section 2.5 of W3C XPath 1.0 recommendation)

from xpath.

mildred avatar mildred commented on June 12, 2024

The above patch is creating an infinite loop somewhere in the tests, It should probably be tweaked to behave like this only in some cases.

from xpath.

zhengchun avatar zhengchun commented on June 12, 2024

Its generate XPath query for XPath expression problem.

default generate query look is : filterQuery > childQuery > childQuery > descendantQuery but it should be like this: filterQuery > childQuery > descendantQuery.

from xpath.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.