mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
Fix wasm test gen
This commit is contained in:
parent
fe318488e2
commit
98b310a604
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ use roc_mono::ir::{
|
|||
Call, CallType, Expr, HostExposedLayouts, Literal, Proc, ProcLayout, SelfRecursive, Stmt,
|
||||
UpdateModeId,
|
||||
};
|
||||
use roc_mono::layout::{Builtin, Layout};
|
||||
use roc_mono::layout::{Builtin, LambdaName, Layout};
|
||||
|
||||
const LINKING_TEST_HOST_WASM: &str = "build/wasm_linking_test_host.wasm";
|
||||
const LINKING_TEST_HOST_NATIVE: &str = "build/wasm_linking_test_host";
|
||||
|
@ -110,7 +110,7 @@ fn build_app_mono<'a>(
|
|||
);
|
||||
|
||||
let proc = Proc {
|
||||
name: app_proc,
|
||||
name: LambdaName::only_receiver(app_proc),
|
||||
args: &[],
|
||||
body,
|
||||
closure_data_layout: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue