clarity-pattern-parser 10.2.12 → 10.2.13

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
@@ -203,11 +203,17 @@ class Node {
203
203
  }
204
204
  normalize(startIndex = this._firstIndex) {
205
205
  let length = 0;
206
+ let runningOffset = startIndex;
206
207
  if (this.children.length === 0) {
207
208
  length = this._value.length;
208
209
  }
209
210
  else {
210
- length = this.children.reduce((acc, c) => acc + c.normalize(acc + startIndex), startIndex) - startIndex;
211
+ for (let x = 0; x < this.children.length; x++) {
212
+ const child = this.children[x];
213
+ const childLength = child.normalize(runningOffset);
214
+ runningOffset += childLength;
215
+ length += childLength;
216
+ }
211
217
  }
212
218
  this._firstIndex = startIndex;
213
219
  this._lastIndex = Math.max(startIndex + length - 1, 0);