1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/helper-simple-access/lib/index.js

92 lines
3.0 KiB
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = simplifyAccess;
2024-01-16 21:26:16 +08:00
var _t = require("@babel/types");
const {
LOGICAL_OPERATORS,
assignmentExpression,
binaryExpression,
cloneNode,
identifier,
logicalExpression,
numericLiteral,
sequenceExpression,
unaryExpression
} = _t;
2023-12-18 13:12:25 +08:00
const simpleAssignmentVisitor = {
2024-01-16 21:26:16 +08:00
AssignmentExpression: {
exit(path) {
const {
scope,
seen,
bindingNames
} = this;
if (path.node.operator === "=") return;
if (seen.has(path.node)) return;
seen.add(path.node);
const left = path.get("left");
if (!left.isIdentifier()) return;
const localName = left.node.name;
if (!bindingNames.has(localName)) return;
if (scope.getBinding(localName) !== path.scope.getBinding(localName)) {
return;
}
const operator = path.node.operator.slice(0, -1);
if (LOGICAL_OPERATORS.includes(operator)) {
path.replaceWith(logicalExpression(operator, path.node.left, assignmentExpression("=", cloneNode(path.node.left), path.node.right)));
} else {
path.node.right = binaryExpression(operator, cloneNode(path.node.left), path.node.right);
path.node.operator = "=";
}
}
}
};
{
simpleAssignmentVisitor.UpdateExpression = {
2023-12-18 13:12:25 +08:00
exit(path) {
2024-01-16 21:26:16 +08:00
if (!this.includeUpdateExpression) return;
2023-12-18 13:12:25 +08:00
const {
scope,
bindingNames
} = this;
const arg = path.get("argument");
if (!arg.isIdentifier()) return;
const localName = arg.node.name;
if (!bindingNames.has(localName)) return;
if (scope.getBinding(localName) !== path.scope.getBinding(localName)) {
return;
}
if (path.parentPath.isExpressionStatement() && !path.isCompletionRecord()) {
const operator = path.node.operator == "++" ? "+=" : "-=";
2024-01-16 21:26:16 +08:00
path.replaceWith(assignmentExpression(operator, arg.node, numericLiteral(1)));
2023-12-18 13:12:25 +08:00
} else if (path.node.prefix) {
2024-01-16 21:26:16 +08:00
path.replaceWith(assignmentExpression("=", identifier(localName), binaryExpression(path.node.operator[0], unaryExpression("+", arg.node), numericLiteral(1))));
2023-12-18 13:12:25 +08:00
} else {
const old = path.scope.generateUidIdentifierBasedOnNode(arg.node, "old");
const varName = old.name;
path.scope.push({
id: old
});
2024-01-16 21:26:16 +08:00
const binary = binaryExpression(path.node.operator[0], identifier(varName), numericLiteral(1));
path.replaceWith(sequenceExpression([assignmentExpression("=", identifier(varName), unaryExpression("+", arg.node)), assignmentExpression("=", cloneNode(arg.node), binary), identifier(varName)]));
2023-12-18 13:12:25 +08:00
}
}
2024-01-16 21:26:16 +08:00
};
}
function simplifyAccess(path, bindingNames) {
{
var _arguments$;
path.traverse(simpleAssignmentVisitor, {
scope: path.scope,
bindingNames,
seen: new WeakSet(),
includeUpdateExpression: (_arguments$ = arguments[2]) != null ? _arguments$ : true
});
2023-12-18 13:12:25 +08:00
}
2024-01-16 21:26:16 +08:00
}
//# sourceMappingURL=index.js.map