[6a3a178] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
---|
| 4 | value: true
|
---|
| 5 | });
|
---|
| 6 | exports.default = wrapFunction;
|
---|
| 7 |
|
---|
| 8 | var _helperFunctionName = require("@babel/helper-function-name");
|
---|
| 9 |
|
---|
| 10 | var _template = require("@babel/template");
|
---|
| 11 |
|
---|
| 12 | var _t = require("@babel/types");
|
---|
| 13 |
|
---|
| 14 | const {
|
---|
| 15 | blockStatement,
|
---|
| 16 | callExpression,
|
---|
| 17 | functionExpression,
|
---|
| 18 | isAssignmentPattern,
|
---|
| 19 | isRestElement,
|
---|
| 20 | returnStatement
|
---|
| 21 | } = _t;
|
---|
| 22 |
|
---|
| 23 | const buildAnonymousExpressionWrapper = _template.default.expression(`
|
---|
| 24 | (function () {
|
---|
| 25 | var REF = FUNCTION;
|
---|
| 26 | return function NAME(PARAMS) {
|
---|
| 27 | return REF.apply(this, arguments);
|
---|
| 28 | };
|
---|
| 29 | })()
|
---|
| 30 | `);
|
---|
| 31 |
|
---|
| 32 | const buildNamedExpressionWrapper = _template.default.expression(`
|
---|
| 33 | (function () {
|
---|
| 34 | var REF = FUNCTION;
|
---|
| 35 | function NAME(PARAMS) {
|
---|
| 36 | return REF.apply(this, arguments);
|
---|
| 37 | }
|
---|
| 38 | return NAME;
|
---|
| 39 | })()
|
---|
| 40 | `);
|
---|
| 41 |
|
---|
| 42 | const buildDeclarationWrapper = (0, _template.default)(`
|
---|
| 43 | function NAME(PARAMS) { return REF.apply(this, arguments); }
|
---|
| 44 | function REF() {
|
---|
| 45 | REF = FUNCTION;
|
---|
| 46 | return REF.apply(this, arguments);
|
---|
| 47 | }
|
---|
| 48 | `);
|
---|
| 49 |
|
---|
| 50 | function classOrObjectMethod(path, callId) {
|
---|
| 51 | const node = path.node;
|
---|
| 52 | const body = node.body;
|
---|
| 53 | const container = functionExpression(null, [], blockStatement(body.body), true);
|
---|
| 54 | body.body = [returnStatement(callExpression(callExpression(callId, [container]), []))];
|
---|
| 55 | node.async = false;
|
---|
| 56 | node.generator = false;
|
---|
| 57 | path.get("body.body.0.argument.callee.arguments.0").unwrapFunctionEnvironment();
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | function plainFunction(path, callId, noNewArrows) {
|
---|
| 61 | const node = path.node;
|
---|
| 62 | const isDeclaration = path.isFunctionDeclaration();
|
---|
| 63 | const functionId = node.id;
|
---|
| 64 | const wrapper = isDeclaration ? buildDeclarationWrapper : functionId ? buildNamedExpressionWrapper : buildAnonymousExpressionWrapper;
|
---|
| 65 |
|
---|
| 66 | if (path.isArrowFunctionExpression()) {
|
---|
| 67 | path.arrowFunctionToExpression({
|
---|
| 68 | noNewArrows
|
---|
| 69 | });
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | node.id = null;
|
---|
| 73 |
|
---|
| 74 | if (isDeclaration) {
|
---|
| 75 | node.type = "FunctionExpression";
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | const built = callExpression(callId, [node]);
|
---|
| 79 | const container = wrapper({
|
---|
| 80 | NAME: functionId || null,
|
---|
| 81 | REF: path.scope.generateUidIdentifier(functionId ? functionId.name : "ref"),
|
---|
| 82 | FUNCTION: built,
|
---|
| 83 | PARAMS: node.params.reduce((acc, param) => {
|
---|
| 84 | acc.done = acc.done || isAssignmentPattern(param) || isRestElement(param);
|
---|
| 85 |
|
---|
| 86 | if (!acc.done) {
|
---|
| 87 | acc.params.push(path.scope.generateUidIdentifier("x"));
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | return acc;
|
---|
| 91 | }, {
|
---|
| 92 | params: [],
|
---|
| 93 | done: false
|
---|
| 94 | }).params
|
---|
| 95 | });
|
---|
| 96 |
|
---|
| 97 | if (isDeclaration) {
|
---|
| 98 | path.replaceWith(container[0]);
|
---|
| 99 | path.insertAfter(container[1]);
|
---|
| 100 | } else {
|
---|
| 101 | const retFunction = container.callee.body.body[1].argument;
|
---|
| 102 |
|
---|
| 103 | if (!functionId) {
|
---|
| 104 | (0, _helperFunctionName.default)({
|
---|
| 105 | node: retFunction,
|
---|
| 106 | parent: path.parent,
|
---|
| 107 | scope: path.scope
|
---|
| 108 | });
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | if (!retFunction || retFunction.id || node.params.length) {
|
---|
| 112 | path.replaceWith(container);
|
---|
| 113 | } else {
|
---|
| 114 | path.replaceWith(built);
|
---|
| 115 | }
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | function wrapFunction(path, callId, noNewArrows = true) {
|
---|
| 120 | if (path.isMethod()) {
|
---|
| 121 | classOrObjectMethod(path, callId);
|
---|
| 122 | } else {
|
---|
| 123 | plainFunction(path, callId, noNewArrows);
|
---|
| 124 | }
|
---|
| 125 | } |
---|