/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/dependencies/ImportMetaHotAcceptDependency.js
43 строки
1 KB
Alexander Akait
refactor: annotate constructor fields with @type to improve type coverage (#21265)
24 июн 2026, 13:36
Не верифицирован
24 июн 2026, 13:36
e8f9334
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Ivan Kopeykin @vankop */ "use strict"; const makeSerializable = require("../util/makeSerializable"); const ModuleDependency = require("./ModuleDependency"); const ModuleDependencyTemplateAsId = require("./ModuleDependencyTemplateAsId"); /** @typedef {import("../javascript/JavascriptParser").Range} Range */ class ImportMetaHotAcceptDependency extends ModuleDependency { /** * Creates an instance of ImportMetaHotAcceptDependency. * @param {string} request the request string * @param {Range} range location in source code */ constructor(request, range) { super(request); this.range = range; /** @type {boolean} */ this.weak = true; } get type() { return "import.meta.webpackHot.accept"; } get category() { return "esm"; } } makeSerializable( ImportMetaHotAcceptDependency, "webpack/lib/dependencies/ImportMetaHotAcceptDependency" ); ImportMetaHotAcceptDependency.Template = ModuleDependencyTemplateAsId; module.exports = ImportMetaHotAcceptDependency;