mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
28 lines
751 B
Text
28 lines
751 B
Text
|
enum ImportExportKind {
|
||
|
"function",
|
||
|
"table",
|
||
|
"memory",
|
||
|
"global"
|
||
|
};
|
||
|
|
||
|
dictionary ModuleExportDescriptor {
|
||
|
required USVString name;
|
||
|
required ImportExportKind kind;
|
||
|
};
|
||
|
|
||
|
dictionary ModuleImportDescriptor {
|
||
|
required USVString module;
|
||
|
required USVString name;
|
||
|
required ImportExportKind kind;
|
||
|
};
|
||
|
|
||
|
// https://webassembly.github.io/spec/js-api/#modules
|
||
|
[LegacyNamespace=WebAssembly, Exposed=*]
|
||
|
interface Module {
|
||
|
constructor(BufferSource bytes);
|
||
|
|
||
|
// FIXME: static sequence<ModuleExportDescriptor> exports(Module moduleObject);
|
||
|
// FIXME: static sequence<ModuleImportDescriptor> imports(Module moduleObject);
|
||
|
// FIXME: static sequence<ArrayBuffer> customSections(Module moduleObject, DOMString sectionName);
|
||
|
};
|