clarity-pattern-parser 10.1.9 → 10.1.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/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/patterns/Options.ts +1 -1
package/dist/index.browser.js
CHANGED
|
@@ -1029,7 +1029,7 @@
|
|
|
1029
1029
|
_tryToParse(cursor) {
|
|
1030
1030
|
let children = this._children;
|
|
1031
1031
|
if (depthCache$1.getDepth(this._id, this._firstIndex) > 1) {
|
|
1032
|
-
children = this._children.reverse();
|
|
1032
|
+
children = this._children.slice().reverse();
|
|
1033
1033
|
}
|
|
1034
1034
|
else if (depthCache$1.getDepth(this._id, this._firstIndex) > 2) {
|
|
1035
1035
|
cursor.recordErrorAt(this._firstIndex, this._firstIndex, this);
|