File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ class UnqualifiedLookupFactory {
356
356
void recordDependencyOnTopLevelName (DeclContext *topLevelContext,
357
357
DeclName name, bool isCascadingUse);
358
358
359
- void addPrivateImports (DeclContext *const dc);
359
+ void addImportedResults (DeclContext *const dc);
360
360
361
361
void addNamesKnownToDebugClient (DeclContext *dc);
362
362
@@ -440,7 +440,7 @@ void UnqualifiedLookupFactory::lookUpTopLevelNamesInModuleScopeContext(
440
440
isOriginallyTypeLookup, Results))
441
441
return ;
442
442
443
- addPrivateImports (DC);
443
+ addImportedResults (DC);
444
444
addNamesKnownToDebugClient (DC);
445
445
if (Results.empty ()) {
446
446
// If we still haven't found anything, but we do have some
@@ -1042,7 +1042,7 @@ void UnqualifiedLookupFactory::recordDependencyOnTopLevelName(
1042
1042
recordedIsCascadingUse = isCascadingUse;
1043
1043
}
1044
1044
1045
- void UnqualifiedLookupFactory::addPrivateImports (DeclContext *const dc) {
1045
+ void UnqualifiedLookupFactory::addImportedResults (DeclContext *const dc) {
1046
1046
// Add private imports to the extra search list.
1047
1047
SmallVector<ModuleDecl::ImportedModule, 8 > extraImports;
1048
1048
if (auto FU = dyn_cast<FileUnit>(dc))
You can’t perform that action at this time.
0 commit comments