mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
Remove deprecated roc_collections::soa things
This commit is contained in:
parent
d796b3ec74
commit
8997c80573
14 changed files with 42 additions and 39 deletions
|
@ -1,8 +1,5 @@
|
|||
use roc_can::abilities::AbilitiesStore;
|
||||
use roc_collections::{
|
||||
soa::{slice_extend_new, Index},
|
||||
MutMap,
|
||||
};
|
||||
use roc_collections::{soa::slice_extend_new, MutMap};
|
||||
use roc_error_macros::internal_error;
|
||||
use roc_module::symbol::Symbol;
|
||||
use roc_solve_problem::TypeError;
|
||||
|
@ -10,6 +7,7 @@ use roc_types::{
|
|||
subs::{AliasVariables, Content, FlatType, Rank, Subs, SubsSlice, TagExt, UnionTags, Variable},
|
||||
types::{Alias, AliasKind, OptAbleVar, Type, TypeTag, Types},
|
||||
};
|
||||
use soa::Index;
|
||||
|
||||
use crate::to_var::type_to_var_help;
|
||||
use crate::{ability::ObligationCache, env::InferenceEnv};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use std::cell::RefCell;
|
||||
|
||||
use roc_can::{abilities::AbilitiesStore, constraint::TypeOrVar, expected::Expected};
|
||||
use roc_collections::soa::{slice_extend_new, Index, Slice};
|
||||
use roc_collections::soa::slice_extend_new;
|
||||
use roc_error_macros::internal_error;
|
||||
use roc_module::{ident::TagName, symbol::Symbol};
|
||||
use roc_region::all::Loc;
|
||||
|
@ -19,6 +19,7 @@ use roc_types::{
|
|||
},
|
||||
};
|
||||
use roc_unify::unify::{unify, Unified};
|
||||
use soa::{Index, Slice};
|
||||
|
||||
use crate::{
|
||||
ability::{AbilityImplError, ObligationCache},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue