Merge pull request #7866 from webpack/feature/type-unsupported-feature-warning

chore(types): add jsdoc types for UnsupportedFeatureWarning class
This commit is contained in:
Tobias Koppers 2018-08-09 00:39:02 +02:00 revīziju iesūtīja GitHub
revīzija 09b6eaed8a
Šim parakstam datu bāzē netika atrasta zināma atslēga
GPG atslēgas ID: 4AEE18F83AFDEB23
1 mainīti faili ar 8 papildinājumiem un 0 dzēšanām

Parādīt failu

@ -6,7 +6,15 @@
const WebpackError = require("./WebpackError");
/** @typedef {import("./Module")} Module */
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
class UnsupportedFeatureWarning extends WebpackError {
/**
* @param {Module} module module relevant to warning
* @param {string} message description of warning
* @param {DependencyLocation} loc location start and end positions of the module
*/
constructor(module, message, loc) {
super(message);