clarity-pattern-parser 10.2.7 → 10.2.8

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/dist/index.js CHANGED
@@ -2909,6 +2909,12 @@ class ExpressionPattern {
2909
2909
  if (cursor.hasNext()) {
2910
2910
  cursor.next();
2911
2911
  }
2912
+ else {
2913
+ if (lastBinaryNode != null) {
2914
+ lastBinaryNode.appendChild(lastUnaryNode);
2915
+ }
2916
+ break outer;
2917
+ }
2912
2918
  break;
2913
2919
  }
2914
2920
  }