Last change
on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
549 bytes
|
Rev | Line | |
---|
[6a3a178] | 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 | class RequireEnsureDependenciesBlock extends AsyncDependenciesBlock {
|
---|
| 12 | constructor(chunkName, loc) {
|
---|
| 13 | super(chunkName, loc, null);
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | makeSerializable(
|
---|
| 18 | RequireEnsureDependenciesBlock,
|
---|
| 19 | "webpack/lib/dependencies/RequireEnsureDependenciesBlock"
|
---|
| 20 | );
|
---|
| 21 |
|
---|
| 22 | module.exports = RequireEnsureDependenciesBlock;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.