first commit

This commit is contained in:
monjack
2025-06-20 18:01:48 +08:00
commit 6daa6d65c1
24611 changed files with 2512443 additions and 0 deletions

View File

@ -0,0 +1,22 @@
MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,19 @@
# @babel/helper-wrap-function
> Helper to wrap functions inside a function call.
See our website [@babel/helper-wrap-function](https://babeljs.io/docs/babel-helper-wrap-function) for more information.
## Install
Using npm:
```sh
npm install --save @babel/helper-wrap-function
```
or using yarn:
```sh
yarn add @babel/helper-wrap-function
```

View File

@ -0,0 +1,144 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = wrapFunction;
var _template = require("@babel/template");
var _t = require("@babel/types");
const {
blockStatement,
callExpression,
functionExpression,
isAssignmentPattern,
isFunctionDeclaration,
isRestElement,
returnStatement,
isCallExpression,
memberExpression,
identifier,
thisExpression,
isPattern
} = _t;
const buildAnonymousExpressionWrapper = _template.default.expression(`
(function () {
var REF = FUNCTION;
return function NAME(PARAMS) {
return REF.apply(this, arguments);
};
})()
`);
const buildNamedExpressionWrapper = _template.default.expression(`
(function () {
var REF = FUNCTION;
function NAME(PARAMS) {
return REF.apply(this, arguments);
}
return NAME;
})()
`);
const buildDeclarationWrapper = _template.default.statements(`
function NAME(PARAMS) { return REF.apply(this, arguments); }
function REF() {
REF = FUNCTION;
return REF.apply(this, arguments);
}
`);
function classOrObjectMethod(path, callId, ignoreFunctionLength) {
const node = path.node;
const body = node.body;
let params = [];
const shoudlForwardParams = node.params.some(p => isPattern(p));
if (shoudlForwardParams) {
params = node.params;
node.params = [];
if (!ignoreFunctionLength) {
for (const param of params) {
if (isAssignmentPattern(param) || isRestElement(param)) {
break;
}
node.params.push(path.scope.generateUidIdentifier("x"));
}
}
}
const container = functionExpression(null, params, blockStatement(body.body), true);
if (shoudlForwardParams) {
body.body = [returnStatement(callExpression(memberExpression(callExpression(callId, [container]), identifier("apply")), [thisExpression(), identifier("arguments")]))];
path.get("body.body.0.argument.callee.object.arguments.0").unwrapFunctionEnvironment();
} else {
body.body = [returnStatement(callExpression(callExpression(callId, [container]), []))];
path.get("body.body.0.argument.callee.arguments.0").unwrapFunctionEnvironment();
}
node.async = false;
node.generator = false;
}
function plainFunction(inPath, callId, noNewArrows, ignoreFunctionLength, hadName) {
let path = inPath;
let node;
let functionId = null;
const nodeParams = inPath.node.params;
if (path.isArrowFunctionExpression()) {
{
var _path$arrowFunctionTo;
path = (_path$arrowFunctionTo = path.arrowFunctionToExpression({
noNewArrows
})) != null ? _path$arrowFunctionTo : path;
}
node = path.node;
} else {
node = path.node;
}
const isDeclaration = isFunctionDeclaration(node);
let built = node;
if (!isCallExpression(node)) {
functionId = node.id;
node.id = null;
node.type = "FunctionExpression";
built = callExpression(callId, [node]);
}
const params = [];
for (const param of nodeParams) {
if (isAssignmentPattern(param) || isRestElement(param)) {
break;
}
params.push(path.scope.generateUidIdentifier("x"));
}
const wrapperArgs = {
NAME: functionId || null,
REF: path.scope.generateUidIdentifier(hadName ? functionId.name : "ref"),
FUNCTION: built,
PARAMS: params
};
if (isDeclaration) {
const container = buildDeclarationWrapper(wrapperArgs);
path.replaceWith(container[0]);
path.insertAfter(container[1]);
} else {
let container;
if (hadName) {
container = buildNamedExpressionWrapper(wrapperArgs);
} else {
container = buildAnonymousExpressionWrapper(wrapperArgs);
}
if (functionId || !ignoreFunctionLength && params.length) {
path.replaceWith(container);
} else {
path.replaceWith(built);
}
}
}
function wrapFunction(path, callId, noNewArrows = true, ignoreFunctionLength = false) {
if (path.isMethod()) {
classOrObjectMethod(path, callId, ignoreFunctionLength);
} else {
const hadName = "id" in path.node && !!path.node.id;
{
var _path, _path$ensureFunctionN;
(_path$ensureFunctionN = (_path = path).ensureFunctionName) != null ? _path$ensureFunctionN : _path.ensureFunctionName = require("@babel/traverse").NodePath.prototype.ensureFunctionName;
}
path = path.ensureFunctionName(false);
plainFunction(path, callId, noNewArrows, ignoreFunctionLength, hadName);
}
}
//# sourceMappingURL=index.js.map

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
{
"name": "@babel/helper-wrap-function",
"version": "7.27.1",
"description": "Helper to wrap functions inside a function call.",
"repository": {
"type": "git",
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-wrap-function"
},
"homepage": "https://babel.dev/docs/en/next/babel-helper-wrap-function",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"dependencies": {
"@babel/template": "^7.27.1",
"@babel/traverse": "^7.27.1",
"@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
}