| 
									
										
										
										
											2016-09-06 05:41:03 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2018-07-30 23:08:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2016-09-06 05:41:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | const asyncLib = require("neo-async"); | 
					
						
							| 
									
										
										
										
											2017-12-01 17:42:43 +08:00
										 |  |  | const Queue = require("./util/Queue"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 03:12:09 +08:00
										 |  |  | /** @typedef {import("./Compiler")} Compiler */ | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | /** @typedef {import("./DependenciesBlock")} DependenciesBlock */ | 
					
						
							|  |  |  | /** @typedef {import("./Dependency")} Dependency */ | 
					
						
							|  |  |  | /** @typedef {import("./Module")} Module */ | 
					
						
							| 
									
										
										
										
											2019-03-14 19:06:59 +08:00
										 |  |  | /** @typedef {import("./ModuleGraph").ExportsInfo} ExportsInfo */ | 
					
						
							| 
									
										
										
										
											2018-07-28 03:12:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | const getCacheIdentifier = (compilation, module) => { | 
					
						
							|  |  |  | 	return `${ | 
					
						
							|  |  |  | 		compilation.compilerPath | 
					
						
							|  |  |  | 	}/FlagDependencyExportsPlugin/${module.identifier()}`;
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | class FlagDependencyExportsPlugin { | 
					
						
							| 
									
										
										
										
											2018-07-28 03:12:09 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {Compiler} compiler the compiler instance | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | 	apply(compiler) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		compiler.hooks.compilation.tap( | 
					
						
							|  |  |  | 			"FlagDependencyExportsPlugin", | 
					
						
							|  |  |  | 			compilation => { | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 				const moduleGraph = compilation.moduleGraph; | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 				compilation.hooks.finishModules.tapAsync( | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 					"FlagDependencyExportsPlugin", | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 					(modules, callback) => { | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 						const logger = compilation.getLogger( | 
					
						
							|  |  |  | 							"webpack.FlagDependencyExportsPlugin" | 
					
						
							|  |  |  | 						); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 						/** @type {Queue<Module>} */ | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 						const queue = new Queue(); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// Step 1: Try to restore cached provided export info from cache
 | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 						logger.time("restore cached provided exports"); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 						asyncLib.each( | 
					
						
							|  |  |  | 							modules, | 
					
						
							|  |  |  | 							(module, callback) => { | 
					
						
							|  |  |  | 								if ( | 
					
						
							|  |  |  | 									module.buildInfo.cacheable !== true || | 
					
						
							|  |  |  | 									typeof module.buildInfo.hash !== "string" | 
					
						
							|  |  |  | 								) { | 
					
						
							|  |  |  | 									// Enqueue uncacheable module for determining the exports
 | 
					
						
							|  |  |  | 									queue.enqueue(module); | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 									moduleGraph.getExportsInfo(module).setHasProvideInfo(); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 									return callback(); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 								} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								compilation.cache.get( | 
					
						
							|  |  |  | 									getCacheIdentifier(compilation, module), | 
					
						
							|  |  |  | 									module.buildInfo.hash, | 
					
						
							|  |  |  | 									(err, result) => { | 
					
						
							|  |  |  | 										if (err) return callback(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 										if (result !== undefined) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											moduleGraph | 
					
						
							|  |  |  | 												.getExportsInfo(module) | 
					
						
							|  |  |  | 												.restoreProvided(result); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 										} else { | 
					
						
							|  |  |  | 											// Without cached info enqueue module for determining the exports
 | 
					
						
							|  |  |  | 											queue.enqueue(module); | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											moduleGraph.getExportsInfo(module).setHasProvideInfo(); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 										} | 
					
						
							|  |  |  | 										callback(); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								); | 
					
						
							|  |  |  | 							}, | 
					
						
							|  |  |  | 							err => { | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 								logger.timeEnd("restore cached provided exports"); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								if (err) return callback(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								/** @type {Set<Module>} */ | 
					
						
							|  |  |  | 								const modulesToStore = new Set(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								/** @type {Map<Module, Set<Module>>} */ | 
					
						
							|  |  |  | 								const dependencies = new Map(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								/** @type {Module} */ | 
					
						
							|  |  |  | 								let module; | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 19:06:59 +08:00
										 |  |  | 								/** @type {ExportsInfo} */ | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 								let exportsInfo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								let cacheable = true; | 
					
						
							|  |  |  | 								let changed = false; | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 								/** | 
					
						
							|  |  |  | 								 * @param {DependenciesBlock} depBlock the dependencies block | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 								 * @returns {void} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								 */ | 
					
						
							|  |  |  | 								const processDependenciesBlock = depBlock => { | 
					
						
							|  |  |  | 									for (const dep of depBlock.dependencies) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 										processDependency(dep); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 									} | 
					
						
							|  |  |  | 									for (const block of depBlock.blocks) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 										processDependenciesBlock(block); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 									} | 
					
						
							|  |  |  | 								}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								/** | 
					
						
							|  |  |  | 								 * @param {Dependency} dep the dependency | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 								 * @returns {void} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								 */ | 
					
						
							|  |  |  | 								const processDependency = dep => { | 
					
						
							|  |  |  | 									const exportDesc = dep.getExports(moduleGraph); | 
					
						
							|  |  |  | 									if (!exportDesc) return; | 
					
						
							|  |  |  | 									const exports = exportDesc.exports; | 
					
						
							| 
									
										
										
										
											2020-03-05 20:31:58 +08:00
										 |  |  | 									const canMangle = exportDesc.canMangle; | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 									const exportDeps = exportDesc.dependencies; | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 									if (exports === true) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 										// unknown exports
 | 
					
						
							| 
									
										
										
										
											2020-03-05 20:31:58 +08:00
										 |  |  | 										if (exportsInfo.setUnknownExportsProvided(canMangle)) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											changed = true; | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} else if (Array.isArray(exports)) { | 
					
						
							|  |  |  | 										// merge in new exports
 | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | 										const mergeExports = (exportsInfo, exports) => { | 
					
						
							|  |  |  | 											for (const exportNameOrSpec of exports) { | 
					
						
							|  |  |  | 												if (typeof exportNameOrSpec === "string") { | 
					
						
							|  |  |  | 													const exportInfo = exportsInfo.getExportInfo( | 
					
						
							|  |  |  | 														exportNameOrSpec | 
					
						
							|  |  |  | 													); | 
					
						
							|  |  |  | 													if (exportInfo.provided === false) { | 
					
						
							|  |  |  | 														exportInfo.provided = true; | 
					
						
							| 
									
										
										
										
											2019-06-12 20:00:34 +08:00
										 |  |  | 														changed = true; | 
					
						
							|  |  |  | 													} | 
					
						
							| 
									
										
										
										
											2020-03-05 20:31:58 +08:00
										 |  |  | 													if ( | 
					
						
							|  |  |  | 														canMangle === false && | 
					
						
							|  |  |  | 														exportInfo.canMangleProvide !== false | 
					
						
							|  |  |  | 													) { | 
					
						
							|  |  |  | 														exportInfo.canMangleProvide = false; | 
					
						
							|  |  |  | 														changed = true; | 
					
						
							|  |  |  | 													} | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | 												} else { | 
					
						
							|  |  |  | 													const exportInfo = exportsInfo.getExportInfo( | 
					
						
							|  |  |  | 														exportNameOrSpec.name | 
					
						
							| 
									
										
										
										
											2019-03-14 19:06:59 +08:00
										 |  |  | 													); | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | 													if (exportInfo.provided === false) { | 
					
						
							|  |  |  | 														exportInfo.provided = true; | 
					
						
							| 
									
										
										
										
											2019-03-14 19:06:59 +08:00
										 |  |  | 														changed = true; | 
					
						
							|  |  |  | 													} | 
					
						
							| 
									
										
										
										
											2020-03-05 20:31:58 +08:00
										 |  |  | 													if ( | 
					
						
							|  |  |  | 														exportInfo.canMangleProvide !== false && | 
					
						
							|  |  |  | 														(exportNameOrSpec.canMangle === false || | 
					
						
							|  |  |  | 															(canMangle === false && | 
					
						
							|  |  |  | 																exportNameOrSpec.canMangle === undefined)) | 
					
						
							|  |  |  | 													) { | 
					
						
							|  |  |  | 														exportInfo.canMangleProvide = false; | 
					
						
							|  |  |  | 														changed = true; | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | 													} | 
					
						
							|  |  |  | 													if (exportNameOrSpec.exports) { | 
					
						
							|  |  |  | 														const nestedExportsInfo = exportInfo.createNestedExportsInfo(); | 
					
						
							|  |  |  | 														mergeExports( | 
					
						
							|  |  |  | 															nestedExportsInfo, | 
					
						
							|  |  |  | 															exportNameOrSpec.exports | 
					
						
							|  |  |  | 														); | 
					
						
							|  |  |  | 													} | 
					
						
							|  |  |  | 													if (exportNameOrSpec.from) { | 
					
						
							|  |  |  | 														const fromExportsInfo = moduleGraph.getExportsInfo( | 
					
						
							|  |  |  | 															exportNameOrSpec.from | 
					
						
							|  |  |  | 														); | 
					
						
							|  |  |  | 														const nestedExportsInfo = fromExportsInfo.getNestedExportsInfo( | 
					
						
							|  |  |  | 															exportNameOrSpec.export | 
					
						
							|  |  |  | 														); | 
					
						
							|  |  |  | 														if (!exportInfo.exportsInfo && nestedExportsInfo) { | 
					
						
							|  |  |  | 															exportInfo.exportsInfo = nestedExportsInfo; | 
					
						
							|  |  |  | 															changed = true; | 
					
						
							|  |  |  | 														} | 
					
						
							|  |  |  | 													} | 
					
						
							| 
									
										
										
										
											2019-03-14 19:06:59 +08:00
										 |  |  | 												} | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											} | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | 										}; | 
					
						
							|  |  |  | 										mergeExports(exportsInfo, exports); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 									} | 
					
						
							|  |  |  | 									// store dependencies
 | 
					
						
							|  |  |  | 									if (exportDeps) { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 										cacheable = false; | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 										for (const exportDependency of exportDeps) { | 
					
						
							|  |  |  | 											// add dependency for this module
 | 
					
						
							|  |  |  | 											const set = dependencies.get(exportDependency); | 
					
						
							|  |  |  | 											if (set === undefined) { | 
					
						
							|  |  |  | 												dependencies.set(exportDependency, new Set([module])); | 
					
						
							|  |  |  | 											} else { | 
					
						
							|  |  |  | 												set.add(module); | 
					
						
							|  |  |  | 											} | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								const notifyDependencies = () => { | 
					
						
							|  |  |  | 									const deps = dependencies.get(module); | 
					
						
							|  |  |  | 									if (deps !== undefined) { | 
					
						
							|  |  |  | 										for (const dep of deps) { | 
					
						
							|  |  |  | 											queue.enqueue(dep); | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 								logger.time("figure out provided exports"); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								while (queue.length > 0) { | 
					
						
							|  |  |  | 									module = queue.dequeue(); | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 									exportsInfo = moduleGraph.getExportsInfo(module); | 
					
						
							|  |  |  | 									if (exportsInfo.otherExportsInfo.provided !== null) { | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 										if (!module.buildMeta || !module.buildMeta.exportsType) { | 
					
						
							|  |  |  | 											// It's a module without declared exports
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											exportsInfo.setUnknownExportsProvided(); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 											modulesToStore.add(module); | 
					
						
							|  |  |  | 											notifyDependencies(); | 
					
						
							|  |  |  | 										} else { | 
					
						
							|  |  |  | 											// It's a module with declared exports
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 											cacheable = true; | 
					
						
							|  |  |  | 											changed = false; | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 											processDependenciesBlock(module); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											if (cacheable) { | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 												modulesToStore.add(module); | 
					
						
							|  |  |  | 											} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											if (changed) { | 
					
						
							|  |  |  | 												notifyDependencies(); | 
					
						
							|  |  |  | 											} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 								} | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 								logger.timeEnd("figure out provided exports"); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 								logger.time("store provided exports into cache"); | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								asyncLib.each( | 
					
						
							|  |  |  | 									modulesToStore, | 
					
						
							|  |  |  | 									(module, callback) => { | 
					
						
							|  |  |  | 										if ( | 
					
						
							|  |  |  | 											module.buildInfo.cacheable !== true || | 
					
						
							|  |  |  | 											typeof module.buildInfo.hash !== "string" | 
					
						
							|  |  |  | 										) { | 
					
						
							|  |  |  | 											// not cacheable
 | 
					
						
							|  |  |  | 											return callback(); | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 										compilation.cache.store( | 
					
						
							|  |  |  | 											getCacheIdentifier(compilation, module), | 
					
						
							|  |  |  | 											module.buildInfo.hash, | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 											moduleGraph | 
					
						
							|  |  |  | 												.getExportsInfo(module) | 
					
						
							|  |  |  | 												.getRestoreProvidedData(), | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 											callback | 
					
						
							|  |  |  | 										); | 
					
						
							|  |  |  | 									}, | 
					
						
							| 
									
										
										
										
											2020-01-30 18:34:33 +08:00
										 |  |  | 									err => { | 
					
						
							|  |  |  | 										logger.timeEnd("store provided exports into cache"); | 
					
						
							|  |  |  | 										callback(err); | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 								); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2018-12-30 21:54:47 +08:00
										 |  |  | 						); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				); | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 				/** @type {WeakMap<Module, any>} */ | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				const providedExportsCache = new WeakMap(); | 
					
						
							|  |  |  | 				compilation.hooks.rebuildModule.tap( | 
					
						
							|  |  |  | 					"FlagDependencyExportsPlugin", | 
					
						
							|  |  |  | 					module => { | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 						providedExportsCache.set( | 
					
						
							|  |  |  | 							module, | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 							moduleGraph.getExportsInfo(module).getRestoreProvidedData() | 
					
						
							| 
									
										
										
										
											2018-12-30 16:03:42 +08:00
										 |  |  | 						); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 				compilation.hooks.finishRebuildingModule.tap( | 
					
						
							|  |  |  | 					"FlagDependencyExportsPlugin", | 
					
						
							|  |  |  | 					module => { | 
					
						
							| 
									
										
										
										
											2019-01-23 17:05:32 +08:00
										 |  |  | 						moduleGraph | 
					
						
							|  |  |  | 							.getExportsInfo(module) | 
					
						
							|  |  |  | 							.restoreProvided(providedExportsCache.get(module)); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-06 05:41:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 18:59:56 +08:00
										 |  |  | module.exports = FlagDependencyExportsPlugin; |