WXL
3 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Ivan Kopeykin @vankop
*/
 
"use strict";
 
const WebpackError = require("./WebpackError");
 
const CURRENT_METHOD_REGEXP = /at ([a-zA-Z0-9_.]*)/;
 
/**
 * Creates the error message shown when an abstract API is called without
 * being implemented by a subclass.
 * @param {string=} method method name
 * @returns {string} message
 */
function createMessage(method) {
    return `Abstract method${method ? ` ${method}` : ""}. Must be overridden.`;
}
 
/**
 * Captures a stack trace so the calling method name can be folded into the
 * final abstract-method error message.
 * @constructor
 */
function Message() {
    /** @type {string | undefined} */
    this.stack = undefined;
    Error.captureStackTrace(this);
    /** @type {RegExpMatchArray | null} */
    const match =
        /** @type {string} */
        (/** @type {unknown} */ (this.stack))
            .split("\n")[3]
            .match(CURRENT_METHOD_REGEXP);
 
    this.message = match && match[1] ? createMessage(match[1]) : createMessage();
}
 
/**
 * Error thrown when code reaches a method that is intended to be overridden by
 * a subclass.
 * @example
 * ```js
 * class FooClass {
 *     abstractMethod() {
 *         throw new AbstractMethodError(); // error message: Abstract method FooClass.abstractMethod. Must be overridden.
 *     }
 * }
 * ```
 */
class AbstractMethodError extends WebpackError {
    /**
     * Creates an error whose message points at the abstract method that was
     * invoked.
     */
    constructor() {
        super(new Message().message);
        /** @type {string} */
        this.name = "AbstractMethodError";
    }
}
 
module.exports = AbstractMethodError;