meriyah 4.3.1 → 4.3.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.
@@ -1479,7 +1479,7 @@ System.register('meriyah', [], (function (exports) {
1479
1479
  function scanIdentifier(parser, context, isValidAsKeyword) {
1480
1480
  while (isIdPart[advanceChar(parser)]) { }
1481
1481
  parser.tokenValue = parser.source.slice(parser.tokenPos, parser.index);
1482
- return parser.currentChar !== 92 && parser.currentChar < 0x7e
1482
+ return parser.currentChar !== 92 && parser.currentChar <= 0x7e
1483
1483
  ? descKeywordTable[parser.tokenValue] || 208897
1484
1484
  : scanIdentifierSlowCase(parser, context, 0, isValidAsKeyword);
1485
1485
  }
@@ -8816,7 +8816,7 @@ System.register('meriyah', [], (function (exports) {
8816
8816
  });
8817
8817
  exports('ESTree', estree);
8818
8818
 
8819
- var version$1 = "4.3.1";
8819
+ var version$1 = "4.3.2";
8820
8820
 
8821
8821
  const version = exports('version', version$1);
8822
8822
  function parseScript(source, options) {