We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b170806 commit 45360f1Copy full SHA for 45360f1
1 file changed
src/sourcemap/Wasm.ts
@@ -34,6 +34,14 @@ export namespace WASM {
34
return {value: n, type: Type.f32};
35
}
36
37
+ export function f64(n: number): WASM.Value {
38
+ return {value: n, type: Type.f64};
39
+ }
40
+
41
+ export function i64(n: number): WASM.Value {
42
+ return {value: n, type: Type.i64};
43
44
45
export interface Frame {
46
type: number;
47
fidx: string;
0 commit comments