mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
4189cc1ab5
* loader: support .wasm imports * http_server: true * Support named exports * Clippy
17 lines
369 B
JavaScript
17 lines
369 B
JavaScript
function assertEquals(actual, expected, msg) {
|
|
if (actual !== expected) {
|
|
throw new Error(msg || "");
|
|
}
|
|
}
|
|
|
|
export function jsFn() {
|
|
state = "WASM JS Function Executed";
|
|
return 42;
|
|
}
|
|
|
|
export let state = "JS Function Executed";
|
|
|
|
export function jsInitFn() {
|
|
assertEquals(state, "JS Function Executed", "Incorrect state");
|
|
state = "WASM Start Executed";
|
|
}
|