source: frontend/node_modules/webpack/lib/dependencies/DelegatedSourceDependency.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 686 bytes
RevLine 
[9af201e]1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3 Author Tobias Koppers @sokra
4*/
5
6"use strict";
7
8const makeSerializable = require("../util/makeSerializable");
9const ModuleDependency = require("./ModuleDependency");
10
11class DelegatedSourceDependency extends ModuleDependency {
12 /**
13 * Creates an instance of DelegatedSourceDependency.
14 * @param {string} request the request string
15 */
16 constructor(request) {
17 super(request);
18 }
19
20 get type() {
21 return "delegated source";
22 }
23
24 get category() {
25 return "esm";
26 }
27}
28
29makeSerializable(
30 DelegatedSourceDependency,
31 "webpack/lib/dependencies/DelegatedSourceDependency"
32);
33
34module.exports = DelegatedSourceDependency;
Note: See TracBrowser for help on using the repository browser.