meriyah 4.3.7 → 4.3.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/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [4.3.8](https://github.com/meriyah/meriyah/compare/v4.3.7...v4.3.8) (2023-11-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **parser:** assignment as a value for property definition ([5f8f006](https://github.com/meriyah/meriyah/commit/5f8f0061feba7cc46911ef6abd55c7c0ab2bd792))
7
+
8
+
9
+
1
10
  ## [4.3.7](https://github.com/meriyah/meriyah/compare/v4.3.6...v4.3.7) (2023-05-12)
2
11
 
3
12
 
@@ -8509,7 +8509,8 @@ define(['exports'], (function (exports) { 'use strict';
8509
8509
  if (parser.token === 537079928)
8510
8510
  report(parser, 116);
8511
8511
  value = parsePrimaryExpression(parser, context | 16384, 2, 0, 1, 0, 0, 1, tokenPos, linePos, colPos);
8512
- if ((parser.token & 1073741824) !== 1073741824) {
8512
+ if ((parser.token & 1073741824) !== 1073741824 ||
8513
+ (parser.token & 4194304) === 4194304) {
8513
8514
  value = parseMemberOrUpdateExpression(parser, context | 16384, value, 0, 0, tokenPos, linePos, colPos);
8514
8515
  value = parseAssignmentExpression(parser, context | 16384, 0, 0, tokenPos, linePos, colPos, value);
8515
8516
  if (parser.token === 18) {
@@ -8818,7 +8819,7 @@ define(['exports'], (function (exports) { 'use strict';
8818
8819
  __proto__: null
8819
8820
  });
8820
8821
 
8821
- var version$1 = "4.3.7";
8822
+ var version$1 = "4.3.8";
8822
8823
 
8823
8824
  const version = version$1;
8824
8825
  function parseScript(source, options) {