Minor. Rename SyntheticExtensionFunctions -> SyntheticMemberFunctions

This commit is contained in:
Denis Zharkov
2016-12-06 13:09:57 +03:00
parent 035383285c
commit dd392963ac
6 changed files with 15 additions and 15 deletions
@@ -146,7 +146,7 @@ internal class MemberScopeTowerLevel(
override fun getFunctions(name: Name, extensionReceiver: ReceiverValueWithSmartCastInfo?): Collection<CandidateWithBoundDispatchReceiver<FunctionDescriptor>> {
return collectMembers {
getContributedFunctions(name, location) + it.getInnerConstructors(name, location) +
syntheticScopes.collectSyntheticExtensionFunctions(it.singletonOrEmptyList(), name, location)
syntheticScopes.collectSyntheticMemberFunctions(it.singletonOrEmptyList(), name, location)
}
}
}