Scope: remove uses of PDict

This commit is contained in:
Tim Wojtulewicz 2019-07-26 13:04:29 -07:00 committed by Jon Siwek
parent bbf49406c1
commit a3deb0446c
7 changed files with 51 additions and 41 deletions

View file

@ -429,7 +429,7 @@ TraversalCode OuterIDBindingFinder::PreExpr(const Expr* expr)
if ( e->Id()->IsGlobal() )
return TC_CONTINUE;
if ( scope->GetIDs()->Lookup(e->Id()->Name()) )
if ( scope->Lookup(e->Id()->Name()) )
return TC_CONTINUE;
outer_id_references.push_back(e);