path-expression-matcher 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "path-expression-matcher",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Efficient path tracking and pattern matching for XML/JSON parsers",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/Expression.js CHANGED
@@ -82,12 +82,6 @@ export default class Expression {
82
82
  _parseSegment(part) {
83
83
  const segment = { type: 'tag' };
84
84
 
85
- // CRITICAL: Handle wildcard FIRST (before any other parsing)
86
- if (part === '*') {
87
- segment.tag = '*';
88
- return segment;
89
- }
90
-
91
85
  // NEW NAMESPACE SYNTAX (v2.0):
92
86
  // ============================
93
87
  // Namespace uses DOUBLE colon (::)