|
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:
767 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | /*
|
|---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
|---|
| 3 | Author Tobias Koppers @sokra
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | "use strict";
|
|---|
| 7 |
|
|---|
| 8 | const AsyncDependenciesBlock = require("../AsyncDependenciesBlock");
|
|---|
| 9 | const makeSerializable = require("../util/makeSerializable");
|
|---|
| 10 |
|
|---|
| 11 | /** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
|
|---|
| 12 |
|
|---|
| 13 | class AMDRequireDependenciesBlock extends AsyncDependenciesBlock {
|
|---|
| 14 | /**
|
|---|
| 15 | * Creates an instance of AMDRequireDependenciesBlock.
|
|---|
| 16 | * @param {DependencyLocation} loc location info
|
|---|
| 17 | * @param {string=} request request
|
|---|
| 18 | */
|
|---|
| 19 | constructor(loc, request) {
|
|---|
| 20 | super(null, loc, request);
|
|---|
| 21 | }
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | makeSerializable(
|
|---|
| 25 | AMDRequireDependenciesBlock,
|
|---|
| 26 | "webpack/lib/dependencies/AMDRequireDependenciesBlock"
|
|---|
| 27 | );
|
|---|
| 28 |
|
|---|
| 29 | module.exports = AMDRequireDependenciesBlock;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.