clarity-pattern-parser 10.2.10 → 10.2.11

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": "clarity-pattern-parser",
3
- "version": "10.2.10",
3
+ "version": "10.2.11",
4
4
  "description": "Parsing Library for Typescript and Javascript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -302,14 +302,14 @@ export class ExpressionPattern implements Pattern {
302
302
  break;
303
303
  }
304
304
  }
305
-
305
+
306
306
  cursor.resolveError();
307
307
  cursor.moveTo(onIndex);
308
308
  }
309
309
 
310
- cursor.resolveError();
311
310
  onIndex = cursor.index;
312
311
  for (let i = 0; i < this._binaryPatterns.length; i++) {
312
+ cursor.resolveError();
313
313
  cursor.moveTo(onIndex);
314
314
 
315
315
  const pattern = this._binaryPatterns[i];