/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/dependencies/URLContextDependency.js
66 строк
2 KB
Alexander Akait
Type serializer read/write contexts with positional tuples (#21201)
18 июн 2026, 00:07
Не верифицирован
18 июн 2026, 00:07
907d23f
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Haijie Xie @hai-x */ "use strict"; const makeSerializable = require("../util/makeSerializable"); const ContextDependency = require("./ContextDependency"); const ContextDependencyTemplateAsRequireCall = require("./ContextDependencyTemplateAsRequireCall"); /** @typedef {import("../ContextModule").ContextOptions} ContextOptions */ /** @typedef {import("../javascript/JavascriptParser").Range} Range */ /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext<[Range]>} ObjectDeserializerContext */ /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext<[Range]>} ObjectSerializerContext */ /** @typedef {ContextOptions & { request: string }} ContextDependencyOptions */ class URLContextDependency extends ContextDependency { /** * Creates an instance of URLContextDependency. * @param {ContextDependencyOptions} options options * @param {Range} range range * @param {Range} valueRange value range */ constructor(options, range, valueRange) { super(options); this.range = range; this.valueRange = valueRange; } get type() { return "new URL() context"; } get category() { return "url"; } /** * Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context */ serialize(context) { context.write(this.valueRange); super.serialize(context); } /** * Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context */ deserialize(context) { this.valueRange = context.read(); super.deserialize(context.rest); } } makeSerializable( URLContextDependency, "webpack/lib/dependencies/URLContextDependency" ); URLContextDependency.Template = ContextDependencyTemplateAsRequireCall; module.exports = URLContextDependency;