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