feat: refactoring project

This commit is contained in:
Carlos
2024-11-23 14:56:07 -05:00
parent f0c2a50c18
commit 1c6db5818d
2351 changed files with 39323 additions and 60326 deletions

View File

@@ -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"));
}
}
};