| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const RuntimeGlobals = require("../RuntimeGlobals");
- const makeSerializable = require("../util/makeSerializable");
- const NullDependency = require("./NullDependency");
- /** @import { ReplaceSource } from "webpack-sources" */
- /** @import Dependency from "../Dependency" */
- /** @import { DependencyTemplateContext } from "../DependencyTemplate" */
- /** @import { Range } from "../javascript/JavascriptParser" */
- /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext<[Range]>} ObjectDeserializerContext */
- /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext<[Range]>} ObjectSerializerContext */
- class CreateScriptUrlDependency extends NullDependency {
- /**
- * Creates an instance of CreateScriptUrlDependency.
- * @param {Range} range range
- */
- constructor(range) {
- super();
- this.range = range;
- }
- get type() {
- return "create script url";
- }
- /**
- * Serializes this instance into the provided serializer context.
- * @param {ObjectSerializerContext} context context
- */
- serialize(context) {
- context.write(this.range);
- super.serialize(context);
- }
- /**
- * Restores this instance from the provided deserializer context.
- * @param {ObjectDeserializerContext} context context
- */
- deserialize(context) {
- this.range = context.read();
- super.deserialize(context.rest);
- }
- }
- CreateScriptUrlDependency.Template = class CreateScriptUrlDependencyTemplate 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, { runtimeRequirements }) {
- const dep = /** @type {CreateScriptUrlDependency} */ (dependency);
- runtimeRequirements.add(RuntimeGlobals.createScriptUrl);
- source.insert(dep.range[0], `${RuntimeGlobals.createScriptUrl}(`);
- source.insert(dep.range[1], ")");
- }
- };
- makeSerializable(
- CreateScriptUrlDependency,
- "webpack/lib/dependencies/CreateScriptUrlDependency"
- );
- module.exports = CreateScriptUrlDependency;
|