webpack/lib/dependencies/WebAssemblyImportDependency.js

57 lines
1.5 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");
2018-05-11 20:13:06 +08:00
/** @typedef {import("@webassemblyjs/ast").ModuleImportDescription} ModuleImportDescription */
class WebAssemblyImportDependency extends ModuleDependency {
2018-05-11 20:13:06 +08:00
/**
* @param {string} request the request
* @param {string} name the imported name
* @param {ModuleImportDescription} description the WASM ast node
* @param {false | string} onlyDirectImport if only direct imports are allowed
*/
constructor(request, name, description, onlyDirectImport) {
super(request);
/** @type {string} */
this.name = name;
2018-05-11 20:13:06 +08:00
/** @type {ModuleImportDescription} */
2018-03-09 00:54:06 +08:00
this.description = description;
/** @type {false | string} */
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")
) {
return [
new UnsupportedWebAssemblyFeatureError(
2018-06-04 22:23:41 +08:00
`Import "${this.name}" from "${this.request}" with ${
this.onlyDirectImport
} can only be used for direct wasm to wasm dependencies`
)
];
}
}
get type() {
return "wasm import";
}
}
module.exports = WebAssemblyImportDependency;