|
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:
902 bytes
|
| Line | |
|---|
| 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("../AsyncDependenciesBlock").GroupOptions} GroupOptions */
|
|---|
| 12 | /** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
|
|---|
| 13 |
|
|---|
| 14 | class RequireEnsureDependenciesBlock extends AsyncDependenciesBlock {
|
|---|
| 15 | /**
|
|---|
| 16 | * Creates an instance of RequireEnsureDependenciesBlock.
|
|---|
| 17 | * @param {GroupOptions | string | null} chunkName chunk name
|
|---|
| 18 | * @param {(DependencyLocation | null)=} loc location info
|
|---|
| 19 | */
|
|---|
| 20 | constructor(chunkName, loc) {
|
|---|
| 21 | super(chunkName, loc, null);
|
|---|
| 22 | }
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | makeSerializable(
|
|---|
| 26 | RequireEnsureDependenciesBlock,
|
|---|
| 27 | "webpack/lib/dependencies/RequireEnsureDependenciesBlock"
|
|---|
| 28 | );
|
|---|
| 29 |
|
|---|
| 30 | module.exports = RequireEnsureDependenciesBlock;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.