WXL
4 天以前 9bce51f651aad297ef9eb6df832bfdaf1de05d84
node_modules/webpack/lib/serialization/AggregateErrorSerializer.js
@@ -7,10 +7,11 @@
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
/** @typedef {Error & { cause: unknown, errors: EXPECTED_ANY[] }} AggregateError */
/** @typedef {Error & { cause?: unknown, errors: EXPECTED_ANY[] }} AggregateError */
class AggregateErrorSerializer {
   /**
    * Serializes this instance into the provided serializer context.
    * @param {AggregateError} obj error
    * @param {ObjectSerializerContext} context context
    */
@@ -22,12 +23,12 @@
   }
   /**
    * Restores this instance from the provided deserializer context.
    * @param {ObjectDeserializerContext} context context
    * @returns {AggregateError} error
    */
   deserialize(context) {
      const errors = context.read();
      // @ts-expect-error ES2018 doesn't `AggregateError`, but it can be used by developers
      // eslint-disable-next-line n/no-unsupported-features/es-builtins, n/no-unsupported-features/es-syntax, unicorn/error-message
      const err = new AggregateError(errors);