We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 177dcf5 + 7dc00db commit 09b6eaeCopy full SHA for 09b6eae
lib/UnsupportedFeatureWarning.js
@@ -6,7 +6,15 @@
6
7
const WebpackError = require("./WebpackError");
8
9
+/** @typedef {import("./Module")} Module */
10
+/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
11
+
12
class UnsupportedFeatureWarning extends WebpackError {
13
+ /**
14
+ * @param {Module} module module relevant to warning
15
+ * @param {string} message description of warning
16
+ * @param {DependencyLocation} loc ___location start and end positions of the module
17
+ */
18
constructor(module, message, loc) {
19
super(message);
20
0 commit comments