summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/js/binaryen.idl4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/js/binaryen.idl b/src/js/binaryen.idl
index 2297cfd5f..3f4f82149 100644
--- a/src/js/binaryen.idl
+++ b/src/js/binaryen.idl
@@ -11,6 +11,7 @@ interface Module {
};
interface AllocatingModule {
+ void AllocatingModule();
};
AllocatingModule implements Module;
@@ -20,6 +21,7 @@ interface ExternalInterface {
};
interface ShellExternalInterface {
+ void ShellExternalInterface();
};
ShellExternalInterface implements ExternalInterface;
@@ -32,6 +34,8 @@ interface ModuleInstance {
[Prefix="ModuleInstance::"]
interface LiteralList {
+ void LiteralList();
+
void push_back([Ref] Literal l);
};