feat: refactoring project
This commit is contained in:
8
node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js
generated
vendored
8
node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js
generated
vendored
@@ -8,9 +8,11 @@ var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
||||
var _core = require("@babel/core");
|
||||
var _default = exports.default = (0, _helperPluginUtils.declare)(api => {
|
||||
api.assertVersion(7);
|
||||
function transformStatementList(paths) {
|
||||
function transformStatementList(parentPath, paths) {
|
||||
const isInStrictMode = parentPath.isInStrictMode();
|
||||
for (const path of paths) {
|
||||
if (!path.isFunctionDeclaration()) continue;
|
||||
;
|
||||
const func = path.node;
|
||||
const declar = _core.types.variableDeclaration("let", [_core.types.variableDeclarator(func.id, _core.types.toExpression(func))]);
|
||||
declar._blockHoist = 2;
|
||||
@@ -31,10 +33,10 @@ var _default = exports.default = (0, _helperPluginUtils.declare)(api => {
|
||||
}) || _core.types.isExportDeclaration(parent)) {
|
||||
return;
|
||||
}
|
||||
transformStatementList(path.get("body"));
|
||||
transformStatementList(path, path.get("body"));
|
||||
},
|
||||
SwitchCase(path) {
|
||||
transformStatementList(path.get("consequent"));
|
||||
transformStatementList(path, path.get("consequent"));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user