hermes-parser 0.29.1 → 0.30.0

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.
@@ -1547,6 +1547,8 @@ function deserializeOpaqueType() {
1547
1547
  id: this.deserializeNode(),
1548
1548
  typeParameters: this.deserializeNode(),
1549
1549
  impltype: this.deserializeNode(),
1550
+ lowerBound: this.deserializeNode(),
1551
+ upperBound: this.deserializeNode(),
1550
1552
  supertype: this.deserializeNode()
1551
1553
  };
1552
1554
  }
@@ -1579,6 +1581,8 @@ function deserializeDeclareOpaqueType() {
1579
1581
  id: this.deserializeNode(),
1580
1582
  typeParameters: this.deserializeNode(),
1581
1583
  impltype: this.deserializeNode(),
1584
+ lowerBound: this.deserializeNode(),
1585
+ upperBound: this.deserializeNode(),
1582
1586
  supertype: this.deserializeNode()
1583
1587
  };
1584
1588
  }