| 
									
										
										
										
											2017-10-17 15:06:05 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Sean Larkin @thelarkinn | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const WebpackError = require("./WebpackError"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-07 14:19:41 +08:00
										 |  |  | /** @typedef {import("./Module")} Module */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AsyncDependencyToInitialChunkError extends WebpackError { | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Creates an instance of AsyncDependencyToInitialChunkError. | 
					
						
							|  |  |  | 	 * @param {string} chunkName Name of Chunk | 
					
						
							|  |  |  | 	 * @param {Module} module module tied to dependency | 
					
						
							|  |  |  | 	 * @param {TODO} loc location of dependency | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-10-17 15:06:05 +08:00
										 |  |  | 	constructor(chunkName, module, loc) { | 
					
						
							| 
									
										
										
										
											2018-06-04 16:10:23 +08:00
										 |  |  | 		super( | 
					
						
							|  |  |  | 			`It's not allowed to load an initial chunk on demand. The chunk name "${chunkName}" is already used by an entrypoint.` | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-10-17 15:06:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 23:41:56 +08:00
										 |  |  | 		this.name = "AsyncDependencyToInitialChunkError"; | 
					
						
							| 
									
										
										
										
											2017-10-17 15:06:05 +08:00
										 |  |  | 		this.module = module; | 
					
						
							| 
									
										
										
										
											2018-06-04 16:10:23 +08:00
										 |  |  | 		this.loc = loc; | 
					
						
							| 
									
										
										
										
											2017-10-17 15:06:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Error.captureStackTrace(this, this.constructor); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-07 14:19:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = AsyncDependencyToInitialChunkError; |