mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
var _helperWrapFunction = require("@babel/helper-wrap-function");
|
|
var _helperAnnotateAsPure = require("@babel/helper-annotate-as-pure");
|
|
var _core = require("@babel/core");
|
|
var _traverse = require("@babel/traverse");
|
|
const {
|
|
callExpression,
|
|
cloneNode,
|
|
isIdentifier,
|
|
isThisExpression,
|
|
yieldExpression
|
|
} = _core.types;
|
|
const awaitVisitor = _traverse.visitors.environmentVisitor({
|
|
ArrowFunctionExpression(path) {
|
|
path.skip();
|
|
},
|
|
AwaitExpression(path, {
|
|
wrapAwait
|
|
}) {
|
|
const argument = path.get("argument");
|
|
path.replaceWith(yieldExpression(wrapAwait ? callExpression(cloneNode(wrapAwait), [argument.node]) : argument.node));
|
|
}
|
|
});
|
|
function _default(path, helpers, noNewArrows, ignoreFunctionLength) {
|
|
path.traverse(awaitVisitor, {
|
|
wrapAwait: helpers.wrapAwait
|
|
});
|
|
const isIIFE = checkIsIIFE(path);
|
|
path.node.async = false;
|
|
path.node.generator = true;
|
|
(0, _helperWrapFunction.default)(path, cloneNode(helpers.wrapAsync), noNewArrows, ignoreFunctionLength);
|
|
const isProperty = path.isObjectMethod() || path.isClassMethod() || path.parentPath.isObjectProperty() || path.parentPath.isClassProperty();
|
|
if (!isProperty && !isIIFE && path.isExpression()) {
|
|
(0, _helperAnnotateAsPure.default)(path);
|
|
}
|
|
function checkIsIIFE(path) {
|
|
if (path.parentPath.isCallExpression({
|
|
callee: path.node
|
|
})) {
|
|
return true;
|
|
}
|
|
const {
|
|
parentPath
|
|
} = path;
|
|
if (parentPath.isMemberExpression()) {
|
|
if (isIdentifier(parentPath.node.property, {
|
|
name: "bind"
|
|
})) {
|
|
const {
|
|
parentPath: bindCall
|
|
} = parentPath;
|
|
return (bindCall.isCallExpression() && bindCall.node.arguments.length === 1 && isThisExpression(bindCall.node.arguments[0]) && bindCall.parentPath.isCallExpression({
|
|
callee: bindCall.node
|
|
})
|
|
);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=index.js.map
|