mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
s/CapturesNiche/Captures
This commit is contained in:
parent
039bab65f5
commit
321ac0b06f
2 changed files with 8 additions and 8 deletions
|
@ -17,7 +17,7 @@ use roc_mono::ir::{
|
|||
Call, CallType, Expr, HostExposedLayouts, Literal, Proc, ProcLayout, SelfRecursive, Stmt,
|
||||
UpdateModeId,
|
||||
};
|
||||
use roc_mono::layout::{Builtin, CapturesNiche, LambdaName, Layout, STLayoutInterner};
|
||||
use roc_mono::layout::{Builtin, Captures, LambdaName, Layout, STLayoutInterner};
|
||||
use roc_wasm_interp::{wasi, ImportDispatcher, Instance, WasiDispatcher};
|
||||
use roc_wasm_module::{Value, WasmModule};
|
||||
|
||||
|
@ -124,7 +124,7 @@ fn build_app_mono<'a>(
|
|||
let proc_layout = ProcLayout {
|
||||
arguments: &[],
|
||||
result: int_layout,
|
||||
niche: CapturesNiche::no_niche(),
|
||||
niche: Captures::no_niche(),
|
||||
};
|
||||
|
||||
let mut app = MutMap::default();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue