| Server IP : 159.203.156.69 / Your IP : 216.73.216.37 Web Server : nginx/1.24.0 System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/tanviranik.com/node_modules/webpack/lib/dependencies/ |
Upload File : |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const Dependency = require("../Dependency");
const DependencyTemplate = require("../DependencyTemplate");
/** @typedef {import("../Dependency").TRANSITIVE} TRANSITIVE */
/** @typedef {import("../Module")} Module */
/** @typedef {import("../javascript/JavascriptParser").ImportAttributes} ImportAttributes */
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
class ModuleDependency extends Dependency {
/**
* Creates an instance of ModuleDependency.
* @param {string} request request path which needs resolving
* @param {number=} sourceOrder source order
*/
constructor(request, sourceOrder) {
super();
this.request = request;
this.userRequest = request;
this.sourceOrder = sourceOrder;
/** @type {Range | undefined} */
this.range = undefined;
/** @type {undefined | string} */
this._context = undefined;
}
/**
* Returns a request context.
* @returns {string | undefined} a request context
*/
getContext() {
return this._context;
}
/**
* Returns an identifier to merge equal requests.
* @returns {string | null} an identifier to merge equal requests
*/
getResourceIdentifier() {
return `context${this._context || ""}|module${this.request}`;
}
/**
* Could affect referencing module.
* @returns {boolean | TRANSITIVE} true, when changes to the referenced module could affect the referencing module; TRANSITIVE, when changes to the referenced module could affect referencing modules of the referencing module
*/
couldAffectReferencingModule() {
return true;
}
/**
* Creates an ignored module.
* @param {string} context context directory
* @returns {Module} ignored module
*/
createIgnoredModule(context) {
const RawModule = require("../RawModule");
const module = new RawModule(
"/* (ignored) */",
`ignored|${context}|${this.request}`,
`${this.request} (ignored)`
);
module.factoryMeta = { sideEffectFree: true };
return module;
}
/**
* Serializes this instance into the provided serializer context.
* @param {ObjectSerializerContext} context context
*/
serialize(context) {
const { write } = context;
write(this.request);
write(this.userRequest);
write(this._context);
write(this.range);
write(this.sourceOrder);
super.serialize(context);
}
/**
* Restores this instance from the provided deserializer context.
* @param {ObjectDeserializerContext} context context
*/
deserialize(context) {
const { read } = context;
this.request = read();
this.userRequest = read();
this._context = read();
this.range = read();
this.sourceOrder = read();
super.deserialize(context);
}
}
ModuleDependency.Template = DependencyTemplate;
module.exports = ModuleDependency;