meriyah 4.4.1 → 4.4.2

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.
@@ -6175,7 +6175,7 @@ function parseMemberOrUpdateExpression(parser, context, expr, inGroup, inChain,
6175
6175
  case 67108877: {
6176
6176
  nextToken(parser, (context | 1073741824 | 8192) ^ 8192);
6177
6177
  parser.assignable = 1;
6178
- const property = parsePropertyOrPrivatePropertyName(parser, context);
6178
+ const property = parsePropertyOrPrivatePropertyName(parser, context | 65536);
6179
6179
  expr = finishNode(parser, context, start, line, column, {
6180
6180
  type: 'MemberExpression',
6181
6181
  object: expr,
@@ -6391,7 +6391,7 @@ function parsePrimaryExpression(parser, context, kind, inNew, canAssign, isPatte
6391
6391
  case 69271571:
6392
6392
  return parseArrayLiteral(parser, context, canAssign ? 0 : 1, inGroup, start, line, column);
6393
6393
  case 67174411:
6394
- return parseParenthesizedExpression(parser, context, canAssign, 1, 0, start, line, column);
6394
+ return parseParenthesizedExpression(parser, context | 65536, canAssign, 1, 0, start, line, column);
6395
6395
  case 86021:
6396
6396
  case 86022:
6397
6397
  case 86023:
@@ -6554,7 +6554,7 @@ function parseArguments(parser, context, inGroup) {
6554
6554
  nextToken(parser, context | 32768);
6555
6555
  const args = [];
6556
6556
  if (parser.token === 16) {
6557
- nextToken(parser, context);
6557
+ nextToken(parser, context | 65536);
6558
6558
  return args;
6559
6559
  }
6560
6560
  while (parser.token !== 16) {
@@ -8828,7 +8828,7 @@ var estree = /*#__PURE__*/Object.freeze({
8828
8828
  __proto__: null
8829
8829
  });
8830
8830
 
8831
- var version$1 = "4.4.1";
8831
+ var version$1 = "4.4.2";
8832
8832
 
8833
8833
  const version = version$1;
8834
8834
  function parseScript(source, options) {