Skip to content

Commit 08e72f5

Browse files
committed
fix compat types list
1 parent ee0b5af commit 08e72f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/wasm/WebAssemblyParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const isMemoryImport = n => n.descr.type === "Memory";
2424
*/
2525
const isTableImport = n => n.descr.type === "Table";
2626

27-
const JS_COMPAT_TYPES = new Set(["i32", "u32", "f32"]);
27+
const JS_COMPAT_TYPES = new Set(["i32", "f32", "f64"]);
2828

2929
/**
3030
* @param {t.ModuleImport} moduleImport the import

0 commit comments

Comments
 (0)