1234567891011121314151617181920212223242526272829303132 |
- "use strict";
- const WebpackError = require("./WebpackError");
- const makeSerializable = require("./util/makeSerializable");
- class UnsupportedFeatureWarning extends WebpackError {
-
- constructor(message, loc) {
- super(message);
- this.name = "UnsupportedFeatureWarning";
- this.loc = loc;
- this.hideStack = true;
- }
- }
- makeSerializable(
- UnsupportedFeatureWarning,
- "webpack/lib/UnsupportedFeatureWarning"
- );
- module.exports = UnsupportedFeatureWarning;
|