Compare commits
3 Commits
3f6bafb1bd
...
9fc1a1ef7f
Author | SHA1 | Date | |
---|---|---|---|
|
9fc1a1ef7f | ||
|
f2dbb2743e | ||
|
fd7152a91b |
4
pkg/rudus.d.ts
vendored
4
pkg/rudus.d.ts
vendored
|
@ -14,8 +14,8 @@ export interface InitOutput {
|
|||
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
||||
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
||||
readonly __wbindgen_export_6: WebAssembly.Table;
|
||||
readonly closure351_externref_shim: (a: number, b: number, c: any) => void;
|
||||
readonly closure364_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
||||
readonly closure353_externref_shim: (a: number, b: number, c: any) => void;
|
||||
readonly closure366_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
||||
readonly __wbindgen_start: () => void;
|
||||
}
|
||||
|
||||
|
|
|
@ -146,11 +146,11 @@ export function ludus(src) {
|
|||
}
|
||||
|
||||
function __wbg_adapter_18(arg0, arg1, arg2) {
|
||||
wasm.closure351_externref_shim(arg0, arg1, arg2);
|
||||
wasm.closure353_externref_shim(arg0, arg1, arg2);
|
||||
}
|
||||
|
||||
function __wbg_adapter_44(arg0, arg1, arg2, arg3) {
|
||||
wasm.closure364_externref_shim(arg0, arg1, arg2, arg3);
|
||||
wasm.closure366_externref_shim(arg0, arg1, arg2, arg3);
|
||||
}
|
||||
|
||||
async function __wbg_load(module, imports) {
|
||||
|
@ -306,8 +306,8 @@ function __wbg_get_imports() {
|
|||
const ret = false;
|
||||
return ret;
|
||||
};
|
||||
imports.wbg.__wbindgen_closure_wrapper1087 = function(arg0, arg1, arg2) {
|
||||
const ret = makeMutClosure(arg0, arg1, 352, __wbg_adapter_18);
|
||||
imports.wbg.__wbindgen_closure_wrapper1089 = function(arg0, arg1, arg2) {
|
||||
const ret = makeMutClosure(arg0, arg1, 354, __wbg_adapter_18);
|
||||
return ret;
|
||||
};
|
||||
imports.wbg.__wbindgen_init_externref_table = function() {
|
||||
|
|
Binary file not shown.
4
pkg/rudus_bg.wasm.d.ts
vendored
4
pkg/rudus_bg.wasm.d.ts
vendored
|
@ -9,6 +9,6 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|||
export const __wbindgen_malloc: (a: number, b: number) => number;
|
||||
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
||||
export const __wbindgen_export_6: WebAssembly.Table;
|
||||
export const closure351_externref_shim: (a: number, b: number, c: any) => void;
|
||||
export const closure364_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
||||
export const closure353_externref_shim: (a: number, b: number, c: any) => void;
|
||||
export const closure366_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
||||
export const __wbindgen_start: () => void;
|
||||
|
|
|
@ -1158,7 +1158,7 @@ impl Compiler {
|
|||
}
|
||||
self.pop_n(self.stack_depth - stack_depth);
|
||||
self.emit_op(Op::Load);
|
||||
// self.stack_depth += 1;
|
||||
self.stack_depth += 1;
|
||||
self.msg("********receive completed".to_string());
|
||||
}
|
||||
MatchClause(..) => unreachable!(),
|
||||
|
|
Loading…
Reference in New Issue
Block a user