aswi2020vldc-gitlab/templetes/node_modules/webpack/lib/HotUpdateChunk.js @ 143404cb
1 | 3a515b92 | cagy | /*
|
---|---|---|---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
||
3 | Author Tobias Koppers @sokra
|
||
4 | */
|
||
5 | "use strict"; |
||
6 | |||
7 | const Chunk = require("./Chunk"); |
||
8 | |||
9 | class HotUpdateChunk extends Chunk { |
||
10 | constructor() { |
||
11 | super(); |
||
12 | /** @type {(string|number)[]} */
|
||
13 | this.removedModules = undefined; |
||
14 | }
|
||
15 | }
|
||
16 | |||
17 | module.exports = HotUpdateChunk; |