/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/errors/ModuleRestoreError.js
49 строк
1 KB
Alexander Akait
refactor: annotate constructor fields with @type to improve type coverage (#21265)
24 июн 2026, 13:36
Не верифицирован
24 июн 2026, 13:36
e8f9334
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const WebpackError = require("./WebpackError"); /** @typedef {import("../Module")} Module */ class ModuleRestoreError extends WebpackError { /** * Creates an instance of ModuleRestoreError. * @param {Module} module module tied to dependency * @param {string | Error} err error thrown */ constructor(module, err) { let message = "Module restore failed: "; /** @type {string | undefined} */ const details = undefined; if (err !== null && typeof err === "object") { if (typeof err.stack === "string" && err.stack) { const stack = err.stack; message += stack; } else if (typeof err.message === "string" && err.message) { message += err.message; } else { message += err; } } else { message += String(err); } super(message); /** @type {string} */ this.name = "ModuleRestoreError"; /** @type {string | undefined} */ this.details = details; /** @type {Module} */ this.module = module; /** @type {string | Error} */ this.error = err; } } /** @type {typeof ModuleRestoreError} */ module.exports = ModuleRestoreError;