| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const makeSerializable = require("../util/makeSerializable");
- const ImportDependency = require("./ImportDependency");
- /** @import { ReplaceSource } from "webpack-sources" */
- /** @import Dependency, { RawReferencedExports } from "../Dependency" */
- /** @import { DependencyTemplateContext } from "../DependencyTemplate" */
- /** @import Module, { BuildMeta } from "../Module" */
- /** @import { ImportAttributes, Range } from "../javascript/JavascriptParser" */
- /** @import { ImportPhaseType } from "./ImportPhase" */
- class ImportEagerDependency extends ImportDependency {
- /**
- * Creates an instance of ImportEagerDependency.
- * @param {string} request the request
- * @param {Range} range expression range
- * @param {RawReferencedExports | null} referencedExports list of referenced exports
- * @param {ImportPhaseType} phase import phase
- * @param {ImportAttributes=} attributes import attributes
- */
- constructor(request, range, referencedExports, phase, attributes) {
- super(request, range, referencedExports, phase, attributes);
- }
- get type() {
- return "import() eager";
- }
- get category() {
- return "esm";
- }
- }
- makeSerializable(
- ImportEagerDependency,
- "webpack/lib/dependencies/ImportEagerDependency"
- );
- ImportEagerDependency.Template = class ImportEagerDependencyTemplate extends (
- ImportDependency.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,
- { runtimeTemplate, module, moduleGraph, chunkGraph, runtimeRequirements }
- ) {
- const dep = /** @type {ImportEagerDependency} */ (dependency);
- const content = runtimeTemplate.moduleNamespacePromise({
- chunkGraph,
- module: /** @type {Module} */ (moduleGraph.getModule(dep)),
- request: dep.request,
- strict: /** @type {BuildMeta} */ (module.buildMeta).strictHarmonyModule,
- message: "import() eager",
- dependency: dep,
- runtimeRequirements
- });
- source.replace(dep.range[0], dep.range[1] - 1, content);
- }
- };
- module.exports = ImportEagerDependency;
|