2013-10-11 16:42:25 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2018-07-30 23:08:51 +08:00
|
|
|
|
2017-01-05 00:48:53 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-03-25 05:17:47 +08:00
|
|
|
const WebpackError = require("./WebpackError");
|
2018-10-25 16:47:52 +08:00
|
|
|
const makeSerializable = require("./util/makeSerializable");
|
2017-01-05 00:48:53 +08:00
|
|
|
|
2018-08-09 02:25:56 +08:00
|
|
|
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
|
|
|
|
|
2017-03-25 05:17:47 +08:00
|
|
|
class UnsupportedFeatureWarning extends WebpackError {
|
2018-08-09 02:25:56 +08:00
|
|
|
/**
|
|
|
|
* @param {string} message description of warning
|
|
|
|
* @param {DependencyLocation} loc location start and end positions of the module
|
|
|
|
*/
|
2018-10-30 05:18:08 +08:00
|
|
|
constructor(message, loc) {
|
2018-06-04 16:10:23 +08:00
|
|
|
super(message);
|
2017-02-17 00:16:47 +08:00
|
|
|
|
2017-01-05 00:48:53 +08:00
|
|
|
this.name = "UnsupportedFeatureWarning";
|
2018-06-04 16:10:23 +08:00
|
|
|
this.loc = loc;
|
|
|
|
this.hideStack = true;
|
2017-01-05 00:48:53 +08:00
|
|
|
}
|
2013-10-11 16:42:25 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 16:47:52 +08:00
|
|
|
makeSerializable(
|
|
|
|
UnsupportedFeatureWarning,
|
|
|
|
"webpack/lib/UnsupportedFeatureWarning"
|
|
|
|
);
|
|
|
|
|
2017-01-05 00:48:53 +08:00
|
|
|
module.exports = UnsupportedFeatureWarning;
|