123456789101112131415161718192021222324252627282930 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const makeSerializable = require("../util/makeSerializable");
- const ModuleDependency = require("./ModuleDependency");
- class DelegatedSourceDependency extends ModuleDependency {
- constructor(request) {
- super(request);
- }
- get type() {
- return "delegated source";
- }
- get category() {
- return "esm";
- }
- }
- makeSerializable(
- DelegatedSourceDependency,
- "webpack/lib/dependencies/DelegatedSourceDependency"
- );
- module.exports = DelegatedSourceDependency;
|