This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/babel-plugin-module-resolver/lib/transformers/call.js
2019-08-11 20:48:02 +02:00

20 lines
No EOL
601 B
JavaScript

"use strict";
exports.__esModule = true;
exports.default = transformCall;
var _utils = require("../utils");
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, _utils.mapPathString)(nodePath.get('arguments.0'), state);
}
}