Blame view

node_modules/webpack/lib/dependencies/HarmonyExportSpecifierDependency.js 1.36 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  /*
  	MIT License http://www.opensource.org/licenses/mit-license.php
  	Author Tobias Koppers @sokra
  */
  "use strict";
  const NullDependency = require("./NullDependency");
  
  class HarmonyExportSpecifierDependency extends NullDependency {
  	constructor(originModule, id, name, position, immutable) {
  		super();
  		this.originModule = originModule;
  		this.id = id;
  		this.name = name;
  		this.position = position;
  		this.immutable = immutable;
  	}
  
  	get type() {
  		return "harmony export specifier";
  	}
  
  	getExports() {
  		return {
  			exports: [this.name]
  		};
  	}
  }
  
  HarmonyExportSpecifierDependency.Template = class HarmonyExportSpecifierDependencyTemplate {
  	apply(dep, source) {
  		const content = this.getPrefix(dep) + this.getContent(dep);
  		source.insert(dep.position, content);
  	}
  
  	getPrefix(dep) {
  		return dep.position > 0 ? "\n" : "";
  	}
  
  	getContent(dep) {
  		const used = dep.originModule.isUsed(dep.name);
  		if(!used) {
  			return `/* unused harmony export ${(dep.name || "namespace")} */\n`;
  		}
  
  		const exportsName = dep.originModule.exportsArgument || "exports";
  		if(dep.immutable) {
  			return `/* harmony export (immutable) */ ${exportsName}[${JSON.stringify(used)}] = ${dep.id};\n`;
  		}
  
  		return `/* harmony export (binding) */ __webpack_require__.d(${exportsName}, ${JSON.stringify(used)}, function() { return ${dep.id}; });\n`;
  	}
  };
  
  module.exports = HarmonyExportSpecifierDependency;