webpack/lib/dependencies/WebAssemblyImportDependency.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2018-04-04 15:17:10 +08:00
const DependencyReference = require("./DependencyReference");
const ModuleDependency = require("./ModuleDependency");
const UnsupportedWebAssemblyFeatureError = require("../wasm/UnsupportedWebAssemblyFeatureError");
class WebAssemblyImportDependency extends ModuleDependency {
constructor(request, name, description, onlyDirectImport) {
super(request);
this.name = name;
2018-03-09 00:54:06 +08:00
this.description = description;
this.onlyDirectImport = onlyDirectImport;
}
getReference() {
2018-02-25 09:00:20 +08:00
if (!this.module) return null;
2018-04-04 15:17:10 +08:00
return new DependencyReference(this.module, [this.name], false);
}
getErrors() {
if (
this.onlyDirectImport &&
this.module &&
!this.module.type.startsWith("webassembly")
) {
const type = this.description.type;
return [
new UnsupportedWebAssemblyFeatureError(
`${type} imports are only available for direct wasm to wasm dependencies`
)
];
}
}
get type() {
return "wasm import";
}
}
module.exports = WebAssemblyImportDependency;