refactor roc_collections

This commit is contained in:
Folkert 2022-04-19 23:00:05 +02:00
parent 9343c6802a
commit b59d33a1d5
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
11 changed files with 108 additions and 106 deletions

View file

@ -9,7 +9,7 @@ use crate::num::{
use crate::pattern::{canonicalize_pattern, Pattern};
use crate::procedure::References;
use crate::scope::Scope;
use roc_collections::all::{MutMap, MutSet, SendMap, VecSet};
use roc_collections::{MutMap, MutSet, SendMap, VecSet};
use roc_module::called_via::CalledVia;
use roc_module::ident::{ForeignSymbol, Lowercase, TagName};
use roc_module::low_level::LowLevel;