123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const NullDependency = require("./NullDependency");
-
- class HarmonyImportSpecifierDependency extends NullDependency {
- constructor(importDependency, importedVar, id, name, range, strictExportPresence) {
- super();
- this.importDependency = importDependency;
- this.importedVar = importedVar;
- this.id = id;
- this.name = name;
- this.range = range;
- this.strictExportPresence = strictExportPresence;
- this.namespaceObjectAsContext = false;
- this.callArgs = undefined;
- this.call = undefined;
- this.directImport = undefined;
- }
-
- get type() {
- return "harmony import specifier";
- }
-
- getReference() {
- if(!this.importDependency.module) return null;
- return {
- module: this.importDependency.module,
- importedNames: this.id && !this.namespaceObjectAsContext ? [this.id] : true
- };
- }
-
- getWarnings() {
- if(this.strictExportPresence) {
- return [];
- }
- return this._getErrors();
- }
-
- getErrors() {
- if(this.strictExportPresence) {
- return this._getErrors();
- }
- return [];
- }
-
- _getErrors() {
- const importedModule = this.importDependency.module;
- if(!importedModule || !importedModule.meta || !importedModule.meta.harmonyModule) {
- return;
- }
-
- if(!this.id) {
- return;
- }
-
- if(importedModule.isProvided(this.id) !== false) {
- return;
- }
-
- const idIsNotNameMessage = this.id !== this.name ? ` (imported as '${this.name}')` : "";
- const errorMessage = `"export '${this.id}'${idIsNotNameMessage} was not found in '${this.importDependency.userRequest}'`;
- const err = new Error(errorMessage);
- err.hideStack = true;
- return [err];
- }
-
- updateHash(hash) {
- super.updateHash(hash);
- const importedModule = this.importDependency.module;
- hash.update((importedModule && importedModule.id) + "");
- hash.update((importedModule && this.id) + "");
- hash.update((importedModule && this.importedVar) + "");
- hash.update((importedModule && this.id && importedModule.isUsed(this.id)) + "");
- hash.update((importedModule && (!importedModule.meta || importedModule.meta.harmonyModule)) + "");
- hash.update((importedModule && (importedModule.used + JSON.stringify(importedModule.usedExports))) + "");
- }
- }
-
- HarmonyImportSpecifierDependency.Template = class HarmonyImportSpecifierDependencyTemplate {
- apply(dep, source) {
- const content = this.getContent(dep);
- source.replace(dep.range[0], dep.range[1] - 1, content);
- }
-
- getContent(dep) {
- const importedModule = dep.importDependency.module;
- const defaultImport = dep.directImport && dep.id === "default" && !(importedModule && (!importedModule.meta || importedModule.meta.harmonyModule));
- const shortHandPrefix = this.getShortHandPrefix(dep);
- const importedVar = dep.importedVar;
- const importedVarSuffix = this.getImportVarSuffix(dep, defaultImport, importedModule);
-
- if(dep.call && defaultImport) {
- return `${shortHandPrefix}${importedVar}_default()`;
- }
-
- if(dep.call && dep.id) {
- return `${shortHandPrefix}Object(${importedVar}${importedVarSuffix})`;
- }
-
- return `${shortHandPrefix}${importedVar}${importedVarSuffix}`;
- }
-
- getImportVarSuffix(dep, defaultImport, importedModule) {
- if(defaultImport) {
- return "_default.a";
- }
-
- if(dep.id) {
- const used = importedModule ? importedModule.isUsed(dep.id) : dep.id;
- const optionalComment = dep.id !== used ? " /* " + dep.id + " */" : "";
- return `[${JSON.stringify(used)}${optionalComment}]`;
- }
-
- return "";
- }
-
- getShortHandPrefix(dep) {
- if(!dep.shorthand) {
- return "";
- }
-
- return dep.name + ": ";
- }
- };
-
- module.exports = HarmonyImportSpecifierDependency;
|