Update dep with major version changes

This commit is contained in:
Brendan Hansknecht 2021-11-05 19:19:37 -07:00
parent 61174c4bc5
commit d49ac68bcc
34 changed files with 547 additions and 906 deletions

View file

@ -63,11 +63,11 @@ impl Scope {
}
}
pub fn idents(&self) -> impl Iterator<Item = &(Ident, (Symbol, Region))> {
pub fn idents(&self) -> impl Iterator<Item = (&Ident, &(Symbol, Region))> {
self.idents.iter()
}
pub fn symbols(&self) -> impl Iterator<Item = &(Symbol, Region)> {
pub fn symbols(&self) -> impl Iterator<Item = (&Symbol, &Region)> {
self.symbols.iter()
}