| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const makeSerializable = require("../util/makeSerializable");
- const NullDependency = require("./NullDependency");
- /** @import { ExportsSpec } from "../Dependency" */
- /** @import ModuleGraph from "../ModuleGraph" */
- /** @typedef {string[] | true} Exports */
- /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext<[Exports, boolean]>} ObjectDeserializerContext */
- /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext<[Exports, boolean]>} ObjectSerializerContext */
- class StaticExportsDependency extends NullDependency {
- /**
- * Creates an instance of StaticExportsDependency.
- * @param {Exports} exports export names
- * @param {boolean} canMangle true, if mangling exports names is allowed
- */
- constructor(exports, canMangle) {
- super();
- /** @type {Exports} */
- this.exports = exports;
- /** @type {boolean} */
- this.canMangle = canMangle;
- }
- get type() {
- return "static exports";
- }
- /**
- * Returns the exported names
- * @param {ModuleGraph} moduleGraph module graph
- * @returns {ExportsSpec | undefined} export names
- */
- getExports(moduleGraph) {
- return {
- exports: this.exports,
- canMangle: this.canMangle,
- dependencies: undefined
- };
- }
- /**
- * Serializes this instance into the provided serializer context.
- * @param {ObjectSerializerContext} context context
- */
- serialize(context) {
- context.write(this.exports).write(this.canMangle);
- super.serialize(context);
- }
- /**
- * Restores this instance from the provided deserializer context.
- * @param {ObjectDeserializerContext} context context
- */
- deserialize(context) {
- this.exports = context.read();
- const c1 = context.rest;
- this.canMangle = c1.read();
- super.deserialize(c1.rest);
- }
- }
- makeSerializable(
- StaticExportsDependency,
- "webpack/lib/dependencies/StaticExportsDependency"
- );
- module.exports = StaticExportsDependency;
|