meriyah 4.3.4 → 4.3.5
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 +4 -0
- package/dist/meriyah.amd.js +4 -1
- package/dist/meriyah.amd.min.js +1 -1
- package/dist/meriyah.cjs +4 -1
- package/dist/meriyah.cjs.js +4 -1
- package/dist/meriyah.cjs.min.js +1 -1
- package/dist/meriyah.esm.js +4 -1
- package/dist/meriyah.esm.min.js +1 -1
- package/dist/meriyah.esm.min.mjs +1 -1
- package/dist/meriyah.esm.mjs +4 -1
- package/dist/meriyah.iife.js +4 -1
- package/dist/meriyah.iife.min.js +1 -1
- package/dist/meriyah.min.cjs +1 -1
- package/dist/meriyah.system.js +4 -1
- package/dist/meriyah.system.min.js +1 -1
- package/dist/meriyah.umd.cjs +4 -1
- package/dist/meriyah.umd.es5.js +4 -1
- package/dist/meriyah.umd.es5.min.js +1 -1
- package/dist/meriyah.umd.js +4 -1
- package/dist/meriyah.umd.min.cjs +1 -1
- package/dist/meriyah.umd.min.js +1 -1
- package/dist/src/parser.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/parser.ts +5 -1
package/CHANGELOG.md
CHANGED
package/dist/meriyah.amd.js
CHANGED
|
@@ -5671,6 +5671,9 @@ define(['exports'], (function (exports) { 'use strict';
|
|
|
5671
5671
|
function parseImportCallDeclaration(parser, context, start, line, column) {
|
|
5672
5672
|
let expr = parseImportExpression(parser, context, 0, start, line, column);
|
|
5673
5673
|
expr = parseMemberOrUpdateExpression(parser, context, expr, 0, 0, start, line, column);
|
|
5674
|
+
if (parser.token === 18) {
|
|
5675
|
+
expr = parseSequenceExpression(parser, context, 0, start, line, column, expr);
|
|
5676
|
+
}
|
|
5674
5677
|
return parseExpressionStatement(parser, context, expr, start, line, column);
|
|
5675
5678
|
}
|
|
5676
5679
|
function parseExportDeclaration(parser, context, scope) {
|
|
@@ -8813,7 +8816,7 @@ define(['exports'], (function (exports) { 'use strict';
|
|
|
8813
8816
|
__proto__: null
|
|
8814
8817
|
});
|
|
8815
8818
|
|
|
8816
|
-
var version$1 = "4.3.
|
|
8819
|
+
var version$1 = "4.3.5";
|
|
8817
8820
|
|
|
8818
8821
|
const version = version$1;
|
|
8819
8822
|
function parseScript(source, options) {
|