SendMap -> MutMap

This commit is contained in:
Folkert 2020-12-26 18:12:43 +01:00
parent 2ef7072247
commit b5c7c26978
3 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,6 @@
use roc_can::constraint::Constraint::{self, *};
use roc_can::expected::{Expected, PExpected};
use roc_collections::all::{ImMap, MutMap, SendMap};
use roc_collections::all::{ImMap, MutMap};
use roc_module::ident::TagName;
use roc_module::symbol::Symbol;
use roc_region::all::{Located, Region};
@ -73,7 +73,7 @@ pub enum TypeError {
#[derive(Clone, Debug, Default)]
pub struct Env {
pub vars_by_symbol: SendMap<Symbol, Variable>,
pub vars_by_symbol: MutMap<Symbol, Variable>,
pub aliases: MutMap<Symbol, Alias>,
}