forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleGraphConnection.js
More file actions
37 lines (31 loc) · 985 Bytes
/
Copy pathModuleGraphConnection.js
File metadata and controls
37 lines (31 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
/** @typedef {import("./Dependency")} Dependency */
/** @typedef {import("./Module")} Module */
class ModuleGraphConnection {
/**
* @param {Module=} originModule the referencing module
* @param {Dependency=} dependency the referencing dependency
* @param {Module} module the referenced module
* @param {string=} explanation some extra detail
*/
constructor(originModule, dependency, module, explanation) {
this.originModule = originModule;
this.resolvedOriginModule = originModule;
this.dependency = dependency;
this.resolvedModule = module;
this.module = module;
this.explanations = new Set();
if (explanation) this.explanations.add(explanation);
}
addExplanation(explanation) {
this.explanations.add(explanation);
}
get explanation() {
return Array.from(this.explanations).join(" ");
}
}
module.exports = ModuleGraphConnection;