use vecset for non_closures

This commit is contained in:
Folkert 2022-04-17 20:30:32 +02:00
parent c47460d792
commit 9f453a7ba2
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

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};
use roc_collections::all::{MutMap, MutSet, SendMap, VecSet};
use roc_module::called_via::CalledVia;
use roc_module::ident::{ForeignSymbol, Lowercase, TagName};
use roc_module::low_level::LowLevel;
@ -29,7 +29,7 @@ pub struct Output {
pub tail_call: Option<Symbol>,
pub introduced_variables: IntroducedVariables,
pub aliases: SendMap<Symbol, Alias>,
pub non_closures: MutSet<Symbol>,
pub non_closures: VecSet<Symbol>,
}
impl Output {