Rename 'ins' -> 'Ins' in BuiltinsPackageFragment and related classes

This commit is contained in:
Alexander Udalov
2016-03-14 20:40:30 +03:00
parent 777ef32d65
commit 4f77b02a58
11 changed files with 42 additions and 42 deletions
@@ -44,7 +44,7 @@ class AllClassesCompletion(private val parameters: CompletionParameters,
//TODO: this is a temporary solution until we have built-ins in indices
// we need only nested classes because top-level built-ins are all added through default imports
for (builtinPackage in resolutionFacade.moduleDescriptor.builtIns.builtinsPackageFragments) {
for (builtinPackage in resolutionFacade.moduleDescriptor.builtIns.builtInsPackageFragments) {
collectClassesFromScope(builtinPackage.getMemberScope()) {
if (it.containingDeclaration is ClassDescriptor) {
classDescriptorCollector(it)