/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/errors/ModuleError.js
65 строк
2 KB
Alexander Akait
Type serializer read/write contexts with positional tuples (#21201)
18 июн 2026, 00:07
Не верифицирован
18 июн 2026, 00:07
907d23f
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const { cleanUp } = require("../ErrorHelpers"); const makeSerializable = require("../util/makeSerializable"); const WebpackError = require("./WebpackError"); /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext<[Error]>} ObjectDeserializerContext */ /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext<[Error]>} ObjectSerializerContext */ class ModuleError extends WebpackError { /** * @param {Error} err error thrown * @param {{ from?: string | null }} info additional info */ constructor(err, { from = null } = {}) { let message = "Module Error"; message += from ? ` (from ${from}):\n` : ": "; if (err && typeof err === "object" && err.message) { message += err.message; } else if (err) { message += err; } super(message); /** @type {string} */ this.name = "ModuleError"; /** @type {Error} */ this.error = err; /** @type {string | undefined} */ this.details = err && typeof err === "object" && err.stack ? cleanUp(err.stack, this.message) : undefined; } /** * Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context */ serialize(context) { context.write(this.error); super.serialize(context); } /** * Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context */ deserialize(context) { this.error = context.read(); super.deserialize(context.rest); } } makeSerializable(ModuleError, "webpack/lib/errors/ModuleError"); module.exports = ModuleError;