mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-23 11:57:46 +08:00
Summary: Since jest stopped using node-haste a while ago, we are the only client left. This brings back node-haste back to fbsource to allow us to iterate faster. Reviewed By: bestander Differential Revision: D3641341 fbshipit-source-id: a859f8834765723a3515e2cf265581b9dd83997c
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
'use strict';
|
|
|
|
function resolveModuleRequires(resolutionResponse, module) {
|
|
const pairs = resolutionResponse.getResolvedDependencyPairs(module);
|
|
return pairs
|
|
? pairs.map(([, dependencyModule]) => dependencyModule)
|
|
: [];
|
|
}
|
|
|
|
function getModuleDependents(cache, module) {
|
|
let dependents = cache.get(module);
|
|
if (!dependents) {
|
|
dependents = new Set();
|
|
cache.set(module, dependents);
|
|
}
|
|
return dependents;
|
|
}
|
|
|
|
/**
|
|
* Returns an object that indicates in which module each module is required.
|
|
*/
|
|
function getInverseDependencies(resolutionResponse) {
|
|
const cache = new Map();
|
|
|
|
resolutionResponse.dependencies.forEach(module => {
|
|
resolveModuleRequires(resolutionResponse, module).forEach(dependency => {
|
|
getModuleDependents(cache, dependency).add(module);
|
|
});
|
|
});
|
|
|
|
return cache;
|
|
}
|
|
|
|
module.exports = getInverseDependencies;
|