啊鑫
7 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Jarid Margolin @jaridmargolin
*/
 
"use strict";
 
const inspect = require("util").inspect.custom;
const makeSerializable = require("./util/makeSerializable");
 
/** @typedef {import("./Chunk")} Chunk */
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
/** @typedef {import("./Module")} Module */
/** @typedef {import("./serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
 
class WebpackError extends Error {
    /**
     * Creates an instance of WebpackError.
     * @param {string=} message error message
     * @param {{ cause?: unknown }} options error options
     */
    constructor(message, options = {}) {
        // @ts-expect-error ES2018 doesn't `Error.cause`, but it can be used by developers
        super(message, options);
 
        /** @type {string=} */
        this.details = undefined;
        /** @type {(Module | null)=} */
        this.module = undefined;
        /** @type {DependencyLocation=} */
        this.loc = undefined;
        /** @type {boolean=} */
        this.hideStack = undefined;
        /** @type {Chunk=} */
        this.chunk = undefined;
        /** @type {string=} */
        this.file = undefined;
    }
 
    [inspect]() {
        return (
            this.stack +
            (this.details ? `\n${this.details}` : "") +
            (this.cause ? `\n${this.cause}` : "")
        );
    }
 
    /**
     * @param {ObjectSerializerContext} context context
     */
    serialize({ write }) {
        write(this.name);
        write(this.message);
        write(this.stack);
        write(this.cause);
        write(this.details);
        write(this.loc);
        write(this.hideStack);
    }
 
    /**
     * @param {ObjectDeserializerContext} context context
     */
    deserialize({ read }) {
        this.name = read();
        this.message = read();
        this.stack = read();
        this.cause = read();
        this.details = read();
        this.loc = read();
        this.hideStack = read();
    }
}
 
makeSerializable(WebpackError, "webpack/lib/WebpackError");
 
module.exports = WebpackError;