/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.105.4
lib/UnsupportedFeatureWarning.js
35 строк
865 B
Alexander Akait
refactor: improve types coverage (#20402)
04 фев 2026, 15:32
Не верифицирован
04 фев 2026, 15:32
97decb4
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const WebpackError = require("./WebpackError"); const makeSerializable = require("./util/makeSerializable"); /** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */ class UnsupportedFeatureWarning extends WebpackError { /** * @param {string} message description of warning * @param {DependencyLocation} loc location start and end positions of the module */ constructor(message, loc) { super(message); /** @type {string} */ this.name = "UnsupportedFeatureWarning"; /** @type {DependencyLocation} */ this.loc = loc; /** @type {boolean} */ this.hideStack = true; } } makeSerializable( UnsupportedFeatureWarning, "webpack/lib/UnsupportedFeatureWarning" ); module.exports = UnsupportedFeatureWarning;