remove var_store argument

This commit is contained in:
Folkert 2022-04-28 22:30:27 +02:00
parent 572bd66fb7
commit f17cf9d02b
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 3 additions and 3 deletions

View file

@ -70,7 +70,7 @@ fn add_aliases(var_store: &mut VarStore) -> SendMap<Symbol, Alias> {
}
impl Scope {
pub fn new(home: ModuleId, _var_store: &mut VarStore, initial_ident_ids: IdentIds) -> Scope {
pub fn new(home: ModuleId, initial_ident_ids: IdentIds) -> Scope {
Scope {
home,
exposed_ident_count: initial_ident_ids.len(),