michangarrito/apps/backend/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlock.js
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

30 lines
834 B
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const AsyncDependenciesBlock = require("../AsyncDependenciesBlock");
const makeSerializable = require("../util/makeSerializable");
/** @typedef {import("../AsyncDependenciesBlock").GroupOptions} GroupOptions */
/** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
class RequireEnsureDependenciesBlock extends AsyncDependenciesBlock {
/**
* @param {GroupOptions | null} chunkName chunk name
* @param {(DependencyLocation | null)=} loc location info
*/
constructor(chunkName, loc) {
super(chunkName, loc, null);
}
}
makeSerializable(
RequireEnsureDependenciesBlock,
"webpack/lib/dependencies/RequireEnsureDependenciesBlock"
);
module.exports = RequireEnsureDependenciesBlock;