123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- "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;
-
- var _codeFrame = require("@babel/code-frame");
-
- var _index = require("../index");
-
- var _index2 = require("./index");
-
- var _cache = require("../cache");
-
- var _parser = require("@babel/parser");
-
- var t = require("@babel/types");
-
- var _helperHoistVariables = require("@babel/helper-hoist-variables");
-
- function replaceWithMultiple(nodes) {
- var _pathCache$get;
-
- this.resync();
- nodes = this._verifyNodeList(nodes);
- t.inheritLeadingComments(nodes[0], this.node);
- t.inheritTrailingComments(nodes[nodes.length - 1], this.node);
- (_pathCache$get = _cache.path.get(this.parent)) == null ? void 0 : _pathCache$get.delete(this.node);
- this.node = this.container[this.key] = null;
- const paths = this.insertAfter(nodes);
-
- if (this.node) {
- this.requeue();
- } else {
- this.remove();
- }
-
- return paths;
- }
-
- function replaceWithSourceString(replacement) {
- this.resync();
-
- try {
- replacement = `(${replacement})`;
- replacement = (0, _parser.parse)(replacement);
- } catch (err) {
- const loc = err.loc;
-
- 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()`");
- }
-
- let nodePath = "";
-
- 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]);
- }
- }
-
- const oldNode = this.node;
-
- 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) {
- var _pathCache$get2;
-
- 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);
- }
-
- this.debug(`Replace with ${node == null ? void 0 : node.type}`);
- (_pathCache$get2 = _cache.path.get(this.parent)) == null ? void 0 : _pathCache$get2.set(node, this).delete(this.node);
- this.node = this.container[this.key] = node;
- }
-
- function replaceExpressionWithStatements(nodes) {
- this.resync();
- const toSequenceExpression = t.toSequenceExpression(nodes, this.scope);
-
- if (toSequenceExpression) {
- return this.replaceWith(toSequenceExpression)[0].get("expressions");
- }
-
- const functionParent = this.getFunctionParent();
- const isParentAsync = functionParent == null ? void 0 : functionParent.is("async");
- const isParentGenerator = functionParent == null ? void 0 : functionParent.is("generator");
- const container = t.arrowFunctionExpression([], t.blockStatement(nodes));
- this.replaceWith(t.callExpression(container, []));
- const callee = this.get("callee");
- (0, _helperHoistVariables.default)(callee.get("body"), id => {
- this.scope.push({
- id
- });
- }, "var");
- const completionRecords = this.get("callee").getCompletionRecords();
-
- for (const path of completionRecords) {
- if (!path.isExpressionStatement()) continue;
- const loop = path.findParent(path => path.isLoop());
-
- if (loop) {
- let uid = loop.getData("expressionReplacementReturnUid");
-
- if (!uid) {
- uid = callee.scope.generateDeclaredUidIdentifier("ret");
- callee.get("body").pushContainer("body", t.returnStatement(t.cloneNode(uid)));
- 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));
- }
- }
-
- callee.arrowFunctionToExpression();
- const newCallee = callee;
-
- const needToAwaitFunction = isParentAsync && _index.default.hasType(this.get("callee.body").node, "AwaitExpression", t.FUNCTION_TYPES);
-
- const needToYieldFunction = isParentGenerator && _index.default.hasType(this.get("callee.body").node, "YieldExpression", t.FUNCTION_TYPES);
-
- if (needToAwaitFunction) {
- newCallee.set("async", true);
-
- if (!needToYieldFunction) {
- this.replaceWith(t.awaitExpression(this.node));
- }
- }
-
- if (needToYieldFunction) {
- newCallee.set("generator", true);
- this.replaceWith(t.yieldExpression(this.node, true));
- }
-
- return newCallee.get("body.body");
- }
-
- function replaceInline(nodes) {
- this.resync();
-
- if (Array.isArray(nodes)) {
- if (Array.isArray(this.container)) {
- nodes = this._verifyNodeList(nodes);
-
- const paths = this._containerInsertAfter(nodes);
-
- this.remove();
- return paths;
- } else {
- return this.replaceWithMultiple(nodes);
- }
- } else {
- return this.replaceWith(nodes);
- }
- }
|