xwt
2025-07-17 66f29ab451014ca2e72fa9a5ff6373ab507ff67c
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
79
80
81
82
83
84
85
86
87
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const {
    JAVASCRIPT_MODULE_TYPE_AUTO,
    JAVASCRIPT_MODULE_TYPE_DYNAMIC,
    JAVASCRIPT_MODULE_TYPE_ESM
} = require("./ModuleTypeConstants");
const ConstDependency = require("./dependencies/ConstDependency");
const ExportsInfoDependency = require("./dependencies/ExportsInfoDependency");
 
/** @typedef {import("./Compiler")} Compiler */
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
/** @typedef {import("./javascript/JavascriptParser")} JavascriptParser */
/** @typedef {import("./javascript/JavascriptParser").Range} Range */
 
const PLUGIN_NAME = "ExportsInfoApiPlugin";
 
class ExportsInfoApiPlugin {
    /**
     * Apply the plugin
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        compiler.hooks.compilation.tap(
            PLUGIN_NAME,
            (compilation, { normalModuleFactory }) => {
                compilation.dependencyTemplates.set(
                    ExportsInfoDependency,
                    new ExportsInfoDependency.Template()
                );
                /**
                 * @param {JavascriptParser} parser the parser
                 * @returns {void}
                 */
                const handler = parser => {
                    parser.hooks.expressionMemberChain
                        .for("__webpack_exports_info__")
                        .tap(PLUGIN_NAME, (expr, members) => {
                            const dep =
                                members.length >= 2
                                    ? new ExportsInfoDependency(
                                            /** @type {Range} */ (expr.range),
                                            members.slice(0, -1),
                                            members[members.length - 1]
                                        )
                                    : new ExportsInfoDependency(
                                            /** @type {Range} */ (expr.range),
                                            null,
                                            members[0]
                                        );
                            dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                            parser.state.module.addDependency(dep);
                            return true;
                        });
                    parser.hooks.expression
                        .for("__webpack_exports_info__")
                        .tap(PLUGIN_NAME, expr => {
                            const dep = new ConstDependency(
                                "true",
                                /** @type {Range} */ (expr.range)
                            );
                            dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                            parser.state.module.addPresentationalDependency(dep);
                            return true;
                        });
                };
                normalModuleFactory.hooks.parser
                    .for(JAVASCRIPT_MODULE_TYPE_AUTO)
                    .tap(PLUGIN_NAME, handler);
                normalModuleFactory.hooks.parser
                    .for(JAVASCRIPT_MODULE_TYPE_DYNAMIC)
                    .tap(PLUGIN_NAME, handler);
                normalModuleFactory.hooks.parser
                    .for(JAVASCRIPT_MODULE_TYPE_ESM)
                    .tap(PLUGIN_NAME, handler);
            }
        );
    }
}
 
module.exports = ExportsInfoApiPlugin;