meriyah 4.3.7 → 4.3.9

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.
@@ -5304,7 +5304,7 @@ function parseDoWhileStatement(parser, context, scope, labels, start, line, colu
5304
5304
  consume(parser, context | 32768, 67174411);
5305
5305
  const test = parseExpressions(parser, context, 0, 1, parser.tokenPos, parser.linePos, parser.colPos);
5306
5306
  consume(parser, context | 32768, 16);
5307
- consumeOpt(parser, context, 1074790417);
5307
+ consumeOpt(parser, context | 32768, 1074790417);
5308
5308
  return finishNode(parser, context, start, line, column, {
5309
5309
  type: 'DoWhileStatement',
5310
5310
  body,
@@ -8507,7 +8507,8 @@ function parsePropertyDefinition(parser, context, key, state, decorators, start,
8507
8507
  if (parser.token === 537079928)
8508
8508
  report(parser, 116);
8509
8509
  value = parsePrimaryExpression(parser, context | 16384, 2, 0, 1, 0, 0, 1, tokenPos, linePos, colPos);
8510
- if ((parser.token & 1073741824) !== 1073741824) {
8510
+ if ((parser.token & 1073741824) !== 1073741824 ||
8511
+ (parser.token & 4194304) === 4194304) {
8511
8512
  value = parseMemberOrUpdateExpression(parser, context | 16384, value, 0, 0, tokenPos, linePos, colPos);
8512
8513
  value = parseAssignmentExpression(parser, context | 16384, 0, 0, tokenPos, linePos, colPos, value);
8513
8514
  if (parser.token === 18) {
@@ -8816,7 +8817,7 @@ var estree = /*#__PURE__*/Object.freeze({
8816
8817
  __proto__: null
8817
8818
  });
8818
8819
 
8819
- var version$1 = "4.3.7";
8820
+ var version$1 = "4.3.9";
8820
8821
 
8821
8822
  const version = version$1;
8822
8823
  function parseScript(source, options) {