2023-12-18 13:12:25 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
exports.replaceWithMultiple = replaceWithMultiple;
|
|
|
|
exports.replaceWithSourceString = replaceWithSourceString;
|
|
|
|
exports.replaceWith = replaceWith;
|
|
|
|
exports._replaceWith = _replaceWith;
|
|
|
|
exports.replaceExpressionWithStatements = replaceExpressionWithStatements;
|
|
|
|
exports.replaceInline = replaceInline;
|
|
|
|
|
|
|
|
function _codeFrame() {
|
2024-01-16 21:26:16 +08:00
|
|
|
var data = require("@babel/code-frame");
|
2023-12-18 13:12:25 +08:00
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
_codeFrame = function _codeFrame() {
|
2023-12-18 13:12:25 +08:00
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
var _index = _interopRequireDefault(require("../index"));
|
|
|
|
|
|
|
|
var _index2 = _interopRequireDefault(require("./index"));
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
function _babylon() {
|
|
|
|
var data = require("babylon");
|
2023-12-18 13:12:25 +08:00
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
_babylon = function _babylon() {
|
2023-12-18 13:12:25 +08:00
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function t() {
|
2024-01-16 21:26:16 +08:00
|
|
|
var data = _interopRequireWildcard(require("@babel/types"));
|
2023-12-18 13:12:25 +08:00
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
t = function t() {
|
2023-12-18 13:12:25 +08:00
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var hoistVariablesVisitor = {
|
|
|
|
Function: function Function(path) {
|
2023-12-18 13:12:25 +08:00
|
|
|
path.skip();
|
|
|
|
},
|
2024-01-16 21:26:16 +08:00
|
|
|
VariableDeclaration: function VariableDeclaration(path) {
|
2023-12-18 13:12:25 +08:00
|
|
|
if (path.node.kind !== "var") return;
|
2024-01-16 21:26:16 +08:00
|
|
|
var bindings = path.getBindingIdentifiers();
|
2023-12-18 13:12:25 +08:00
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
for (var key in bindings) {
|
2023-12-18 13:12:25 +08:00
|
|
|
path.scope.push({
|
|
|
|
id: bindings[key]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var exprs = [];
|
|
|
|
var _arr = path.node.declarations;
|
|
|
|
|
|
|
|
for (var _i = 0; _i < _arr.length; _i++) {
|
|
|
|
var declar = _arr[_i];
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (declar.init) {
|
|
|
|
exprs.push(t().expressionStatement(t().assignmentExpression("=", declar.id, declar.init)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
path.replaceWithMultiple(exprs);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function replaceWithMultiple(nodes) {
|
|
|
|
this.resync();
|
|
|
|
nodes = this._verifyNodeList(nodes);
|
|
|
|
t().inheritLeadingComments(nodes[0], this.node);
|
|
|
|
t().inheritTrailingComments(nodes[nodes.length - 1], this.node);
|
|
|
|
this.node = this.container[this.key] = null;
|
2024-01-16 21:26:16 +08:00
|
|
|
var paths = this.insertAfter(nodes);
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (this.node) {
|
|
|
|
this.requeue();
|
|
|
|
} else {
|
|
|
|
this.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
function replaceWithSourceString(replacement) {
|
|
|
|
this.resync();
|
|
|
|
|
|
|
|
try {
|
2024-01-16 21:26:16 +08:00
|
|
|
replacement = "(" + replacement + ")";
|
|
|
|
replacement = (0, _babylon().parse)(replacement);
|
2023-12-18 13:12:25 +08:00
|
|
|
} catch (err) {
|
2024-01-16 21:26:16 +08:00
|
|
|
var loc = err.loc;
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (loc) {
|
|
|
|
err.message += " - make sure this is an expression.\n" + (0, _codeFrame().codeFrameColumns)(replacement, {
|
|
|
|
start: {
|
|
|
|
line: loc.line,
|
|
|
|
column: loc.column + 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
err.code = "BABEL_REPLACE_SOURCE_ERROR";
|
|
|
|
}
|
|
|
|
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
replacement = replacement.program.body[0].expression;
|
|
|
|
|
|
|
|
_index.default.removeProperties(replacement);
|
|
|
|
|
|
|
|
return this.replaceWith(replacement);
|
|
|
|
}
|
|
|
|
|
|
|
|
function replaceWith(replacement) {
|
|
|
|
this.resync();
|
|
|
|
|
|
|
|
if (this.removed) {
|
|
|
|
throw new Error("You can't replace this node, we've already removed it");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (replacement instanceof _index2.default) {
|
|
|
|
replacement = replacement.node;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!replacement) {
|
|
|
|
throw new Error("You passed `path.replaceWith()` a falsy node, use `path.remove()` instead");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.node === replacement) {
|
|
|
|
return [this];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.isProgram() && !t().isProgram(replacement)) {
|
|
|
|
throw new Error("You can only replace a Program root node with another Program node");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(replacement)) {
|
|
|
|
throw new Error("Don't use `path.replaceWith()` with an array of nodes, use `path.replaceWithMultiple()`");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof replacement === "string") {
|
|
|
|
throw new Error("Don't use `path.replaceWith()` with a source string, use `path.replaceWithSourceString()`");
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var nodePath = "";
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (this.isNodeType("Statement") && t().isExpression(replacement)) {
|
|
|
|
if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement) && !this.parentPath.isExportDefaultDeclaration()) {
|
|
|
|
replacement = t().expressionStatement(replacement);
|
|
|
|
nodePath = "expression";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.isNodeType("Expression") && t().isStatement(replacement)) {
|
|
|
|
if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement)) {
|
|
|
|
return this.replaceExpressionWithStatements([replacement]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var oldNode = this.node;
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (oldNode) {
|
|
|
|
t().inheritsComments(replacement, oldNode);
|
|
|
|
t().removeComments(oldNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._replaceWith(replacement);
|
|
|
|
|
|
|
|
this.type = replacement.type;
|
|
|
|
this.setScope();
|
|
|
|
this.requeue();
|
|
|
|
return [nodePath ? this.get(nodePath) : this];
|
|
|
|
}
|
|
|
|
|
|
|
|
function _replaceWith(node) {
|
|
|
|
if (!this.container) {
|
|
|
|
throw new ReferenceError("Container is falsy");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.inList) {
|
|
|
|
t().validate(this.parent, this.key, [node]);
|
|
|
|
} else {
|
|
|
|
t().validate(this.parent, this.key, node);
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
this.debug("Replace with " + (node && node.type));
|
2023-12-18 13:12:25 +08:00
|
|
|
this.node = this.container[this.key] = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
function replaceExpressionWithStatements(nodes) {
|
|
|
|
this.resync();
|
2024-01-16 21:26:16 +08:00
|
|
|
var toSequenceExpression = t().toSequenceExpression(nodes, this.scope);
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (toSequenceExpression) {
|
|
|
|
return this.replaceWith(toSequenceExpression)[0].get("expressions");
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var container = t().arrowFunctionExpression([], t().blockStatement(nodes));
|
2023-12-18 13:12:25 +08:00
|
|
|
this.replaceWith(t().callExpression(container, []));
|
|
|
|
this.traverse(hoistVariablesVisitor);
|
2024-01-16 21:26:16 +08:00
|
|
|
var completionRecords = this.get("callee").getCompletionRecords();
|
|
|
|
|
|
|
|
for (var _iterator = completionRecords, _isArray = Array.isArray(_iterator), _i2 = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
|
|
|
|
var _ref;
|
|
|
|
|
|
|
|
if (_isArray) {
|
|
|
|
if (_i2 >= _iterator.length) break;
|
|
|
|
_ref = _iterator[_i2++];
|
|
|
|
} else {
|
|
|
|
_i2 = _iterator.next();
|
|
|
|
if (_i2.done) break;
|
|
|
|
_ref = _i2.value;
|
|
|
|
}
|
2023-12-18 13:12:25 +08:00
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var path = _ref;
|
2023-12-18 13:12:25 +08:00
|
|
|
if (!path.isExpressionStatement()) continue;
|
2024-01-16 21:26:16 +08:00
|
|
|
var loop = path.findParent(function (path) {
|
|
|
|
return path.isLoop();
|
|
|
|
});
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (loop) {
|
2024-01-16 21:26:16 +08:00
|
|
|
var uid = loop.getData("expressionReplacementReturnUid");
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
if (!uid) {
|
2024-01-16 21:26:16 +08:00
|
|
|
var _callee = this.get("callee");
|
|
|
|
|
|
|
|
uid = _callee.scope.generateDeclaredUidIdentifier("ret");
|
|
|
|
|
|
|
|
_callee.get("body").pushContainer("body", t().returnStatement(t().cloneNode(uid)));
|
|
|
|
|
2023-12-18 13:12:25 +08:00
|
|
|
loop.setData("expressionReplacementReturnUid", uid);
|
|
|
|
} else {
|
|
|
|
uid = t().identifier(uid.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
path.get("expression").replaceWith(t().assignmentExpression("=", t().cloneNode(uid), path.node.expression));
|
|
|
|
} else {
|
|
|
|
path.replaceWith(t().returnStatement(path.node.expression));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var callee = this.get("callee");
|
2023-12-18 13:12:25 +08:00
|
|
|
callee.arrowFunctionToExpression();
|
|
|
|
return callee.get("body.body");
|
|
|
|
}
|
|
|
|
|
|
|
|
function replaceInline(nodes) {
|
|
|
|
this.resync();
|
|
|
|
|
|
|
|
if (Array.isArray(nodes)) {
|
|
|
|
if (Array.isArray(this.container)) {
|
|
|
|
nodes = this._verifyNodeList(nodes);
|
|
|
|
|
2024-01-16 21:26:16 +08:00
|
|
|
var paths = this._containerInsertAfter(nodes);
|
2023-12-18 13:12:25 +08:00
|
|
|
|
|
|
|
this.remove();
|
|
|
|
return paths;
|
|
|
|
} else {
|
|
|
|
return this.replaceWithMultiple(nodes);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return this.replaceWith(nodes);
|
|
|
|
}
|
|
|
|
}
|