NFC: Rename NameBinding to ImportResolution

This commit is contained in:
Hamish Knight
2020-03-28 15:11:23 -07:00
parent e8cbe76cba
commit d2434e1bf7
10 changed files with 77 additions and 83 deletions

View File

@@ -129,7 +129,7 @@ ModuleDecl *SourceLoader::loadModule(SourceLoc importLoc,
Ctx.LangOpts.CollectParsedToken,
Ctx.LangOpts.BuildSyntaxTree);
importMod->addFile(*importFile);
performNameBinding(*importFile);
performImportResolution(*importFile);
importMod->setHasResolvedImports();
return importMod;
}