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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [4.3.2](https://github.com/meriyah/meriyah/compare/v4.3.1...v4.3.2) (2022-10-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **parser:** ~ (0x7e) is valid stop for Identifier or Keyword ([d702ebd](https://github.com/meriyah/meriyah/commit/d702ebdb6d5020c9a4f8a0f987cb421e50ae136e)), closes [#226](https://github.com/meriyah/meriyah/issues/226)
7
+
8
+
9
+
1
10
  ## [4.3.1](https://github.com/meriyah/meriyah/compare/v4.3.0...v4.3.1) (2022-09-11)
2
11
 
3
12
 
@@ -1470,7 +1470,7 @@ define(['exports'], (function (exports) { 'use strict';
1470
1470
  function scanIdentifier(parser, context, isValidAsKeyword) {
1471
1471
  while (isIdPart[advanceChar(parser)]) { }
1472
1472
  parser.tokenValue = parser.source.slice(parser.tokenPos, parser.index);
1473
- return parser.currentChar !== 92 && parser.currentChar < 0x7e
1473
+ return parser.currentChar !== 92 && parser.currentChar <= 0x7e
1474
1474
  ? descKeywordTable[parser.tokenValue] || 208897
1475
1475
  : scanIdentifierSlowCase(parser, context, 0, isValidAsKeyword);
1476
1476
  }
@@ -8806,7 +8806,7 @@ define(['exports'], (function (exports) { 'use strict';
8806
8806
  __proto__: null
8807
8807
  });
8808
8808
 
8809
- var version$1 = "4.3.1";
8809
+ var version$1 = "4.3.2";
8810
8810
 
8811
8811
  const version = version$1;
8812
8812
  function parseScript(source, options) {