You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
757 B

"use strict";
exports.__esModule = true;
exports.default = transformCall;
var _utils = require("../utils");
var _mapPath = _interopRequireDefault(require("../mapPath"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function transformCall(nodePath, state) {
if (state.moduleResolverVisited.has(nodePath)) {
return;
}
const calleePath = nodePath.get('callee');
const isNormalCall = state.normalizedOpts.transformFunctions.some(pattern => (0, _utils.matchesPattern)(state.types, calleePath, pattern));
if (isNormalCall || (0, _utils.isImportCall)(state.types, nodePath)) {
state.moduleResolverVisited.add(nodePath);
(0, _mapPath.default)(nodePath.get('arguments.0'), state);
}
}