Opened 7 years ago

Last modified 7 years ago

#16999 new enhancement

Allow .class on left side of parent/child selectors — at Version 1

Reported by: taylor.smock Owned by: team
Priority: minor Milestone:
Component: External rule Version: latest
Keywords: Cc:

Description (last modified by Don-vip)

node[traffic_calming] { set .traffic_calming }
node.traffic_calming < way[highway] { // Does not work. Expected behavior is to select the way that has the node with the class traffic_calming
        throwError: "Traffic calming in highway (way)";
}
node[traffic_calming] < way[highway] { // Works (example from wiki)
        throwError: "Traffic calming in highway (standard)";
}
way[highway] > node.traffic_calming { // Works, but selects node
        throwError: "Traffic calming in highway (node)";
}

Change History (1)

comment:1 by Don-vip, 7 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.