WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
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
124
125
126
127
128
129
130
131
132
/*
    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 */
/** @typedef {import("./HarmonyExportInitFragment").UnusedExports} UnusedExports */
/** @typedef {import("./HarmonyExportInitFragment").ExportMap} ExportMap */
 
class HarmonyExportSpecifierDependency extends NullDependency {
    /**
     * Creates an instance of HarmonyExportSpecifierDependency.
     * @param {string} id the id
     * @param {string} name the 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
        };
    }
 
    /**
     * Gets module evaluation side effects state.
     * @param {ModuleGraph} moduleGraph the module graph
     * @returns {ConnectionState} how this dependency connects the module to referencing modules
     */
    getModuleEvaluationSideEffectsState(moduleGraph) {
        return false;
    }
 
    /**
     * Serializes this instance into the provided serializer context.
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.id);
        write(this.name);
        super.serialize(context);
    }
 
    /**
     * Restores this instance from the provided deserializer 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
) {
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @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) {
            /** @type {UnusedExports} */
            const set = new Set();
            set.add(dep.name || "namespace");
            initFragments.push(
                new HarmonyExportInitFragment(module.exportsArgument, undefined, set)
            );
            return;
        }
 
        /** @type {ExportMap} */
        const map = new Map();
        map.set(used, `/* binding */ ${dep.id}`);
        initFragments.push(
            new HarmonyExportInitFragment(module.exportsArgument, map, undefined)
        );
    }
};
 
module.exports = HarmonyExportSpecifierDependency;