马宇豪
2024-07-16 f591c27b57e2418c9495bc02ae8cfff84d35bc18
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const makeSerializable = require("../util/makeSerializable");
const HarmonyExportInitFragment = require("./HarmonyExportInitFragment");
const NullDependency = require("./NullDependency");
 
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../Dependency").ExportsSpec} ExportsSpec */
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
/** @typedef {import("../ModuleGraph")} ModuleGraph */
/** @typedef {import("../ModuleGraphConnection").ConnectionState} ConnectionState */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
 
class HarmonyExportSpecifierDependency extends NullDependency {
    /**
     * @param {TODO} id id
     * @param {TODO} name name
     */
    constructor(id, name) {
        super();
        this.id = id;
        this.name = name;
    }
 
    get type() {
        return "harmony export specifier";
    }
 
    /**
     * Returns the exported names
     * @param {ModuleGraph} moduleGraph module graph
     * @returns {ExportsSpec | undefined} export names
     */
    getExports(moduleGraph) {
        return {
            exports: [this.name],
            priority: 1,
            terminalBinding: true,
            dependencies: undefined
        };
    }
 
    /**
     * @param {ModuleGraph} moduleGraph the module graph
     * @returns {ConnectionState} how this dependency connects the module to referencing modules
     */
    getModuleEvaluationSideEffectsState(moduleGraph) {
        return false;
    }
 
    /**
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.id);
        write(this.name);
        super.serialize(context);
    }
 
    /**
     * @param {ObjectDeserializerContext} context context
     */
    deserialize(context) {
        const { read } = context;
        this.id = read();
        this.name = read();
        super.deserialize(context);
    }
}
 
makeSerializable(
    HarmonyExportSpecifierDependency,
    "webpack/lib/dependencies/HarmonyExportSpecifierDependency"
);
 
HarmonyExportSpecifierDependency.Template = class HarmonyExportSpecifierDependencyTemplate extends (
    NullDependency.Template
) {
    /**
     * @param {Dependency} dependency the dependency for which the template should be applied
     * @param {ReplaceSource} source the current replace source which can be modified
     * @param {DependencyTemplateContext} templateContext the context object
     * @returns {void}
     */
    apply(
        dependency,
        source,
        { module, moduleGraph, initFragments, runtime, concatenationScope }
    ) {
        const dep = /** @type {HarmonyExportSpecifierDependency} */ (dependency);
        if (concatenationScope) {
            concatenationScope.registerExport(dep.name, dep.id);
            return;
        }
        const used = moduleGraph
            .getExportsInfo(module)
            .getUsedName(dep.name, runtime);
        if (!used) {
            const set = new Set();
            set.add(dep.name || "namespace");
            initFragments.push(
                new HarmonyExportInitFragment(module.exportsArgument, undefined, set)
            );
            return;
        }
 
        const map = new Map();
        map.set(used, `/* binding */ ${dep.id}`);
        initFragments.push(
            new HarmonyExportInitFragment(module.exportsArgument, map, undefined)
        );
    }
};
 
module.exports = HarmonyExportSpecifierDependency;