Fix compile errors in wasm tests

This commit is contained in:
Brian Carroll 2022-11-15 09:40:55 +00:00
parent ddddb7d4f1
commit 04fcf89653
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
5 changed files with 6 additions and 3 deletions

View file

@ -1,7 +1,8 @@
use roc_error_macros::internal_error;
use roc_gen_wasm::{round_up_to_alignment, wasm32_sized::Wasm32Sized};
use roc_gen_wasm::wasm32_sized::Wasm32Sized;
use roc_mono::layout::Builtin;
use roc_std::{RocDec, RocList, RocOrder, RocResult, RocStr, I128, U128};
use roc_wasm_module::round_up_to_alignment;
use std::convert::TryInto;
pub trait FromWasm32Memory: Wasm32Sized {

View file

@ -2,9 +2,9 @@ use super::RefCount;
use crate::helpers::from_wasm32_memory::FromWasm32Memory;
use roc_collections::all::MutSet;
use roc_gen_wasm::wasm32_result::Wasm32Result;
use roc_gen_wasm::wasm_module::{Export, ExportType};
use roc_gen_wasm::DEBUG_SETTINGS;
use roc_load::{ExecutionMode, LoadConfig, Threading};
use roc_wasm_module::{Export, ExportType};
use std::marker::PhantomData;
use std::path::PathBuf;
use std::rc::Rc;