1234567891011121314151617181920212223242526272829303132 |
- "use strict";
- const WebpackError = require("./WebpackError");
- class CommentCompilationWarning extends WebpackError {
-
- constructor(message, module, loc) {
- super(message);
- this.name = "CommentCompilationWarning";
- this.module = module;
- this.loc = loc;
- Error.captureStackTrace(this, this.constructor);
- }
- }
- module.exports = CommentCompilationWarning;
|