meriyah 6.0.2 → 6.0.3

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
+ ## [6.0.3](https://github.com/meriyah/meriyah/compare/v6.0.2...v6.0.3) (2024-10-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **parser:** fix tagged template parsing when tag has param(s) ([b549ed3](https://github.com/meriyah/meriyah/commit/b549ed39696b694c3c0c2e9220452c3e28538915)), closes [#350](https://github.com/meriyah/meriyah/issues/350)
7
+
8
+
9
+
1
10
  ## [6.0.2](https://github.com/meriyah/meriyah/compare/v6.0.1...v6.0.2) (2024-10-01)
2
11
 
3
12
 
package/dist/meriyah.cjs CHANGED
@@ -6854,7 +6854,7 @@ function parseArguments(parser, context, privateScope, inGroup) {
6854
6854
  if (parser.getToken() === 16)
6855
6855
  break;
6856
6856
  }
6857
- consume(parser, context, 16);
6857
+ consume(parser, context | 16384, 16);
6858
6858
  return args;
6859
6859
  }
6860
6860
  function parseIdentifier(parser, context) {
@@ -9227,7 +9227,7 @@ var estree = /*#__PURE__*/Object.freeze({
9227
9227
  __proto__: null
9228
9228
  });
9229
9229
 
9230
- var version = "6.0.2";
9230
+ var version = "6.0.3";
9231
9231
 
9232
9232
  function parseScript(source, options) {
9233
9233
  return parseSource(source, options, 0);