MCPcopy
hub / github.com/webpack/webpack / getOutgoingConnections

Method getOutgoingConnections

lib/ModuleGraph.js:627–630  ·  view source on GitHub ↗

* Gets outgoing connections. * @param {Module} module the module * @returns {Iterable<ModuleGraphConnection>} list of outgoing connections

(module)

Source from the content-addressed store, hash-verified

625 * @returns {Iterable<ModuleGraphConnection>} list of outgoing connections
626 */
627 getOutgoingConnections(module) {
628 const connections = this._getModuleGraphModule(module).outgoingConnections;
629 return connections === undefined ? EMPTY_SET : connections;
630 }
631
632 /**
633 * Gets incoming connections by origin module.

Callers 11

extractBlockModulesFunction · 0.80
computeReferencesMethod · 0.80
compareReferencesMethod · 0.80
assignDepthMethod · 0.80
executeModuleMethod · 0.80
addDependenciesMethod · 0.80
buildMethod · 0.80
getAllReferencedModulesFunction · 0.80

Calls 1

_getModuleGraphModuleMethod · 0.95

Tested by

no test coverage detected