Rename (style): russian "С" to english "C"

This commit is contained in:
Mikhail Glukhikh
2019-03-19 10:59:28 +03:00
parent 82ccf81da8
commit a07502374e
@@ -233,13 +233,13 @@ fun <C : Candidate> createSimpleFunctionProcessor(
) = createSimpleProcessor(scopeTower, context, explicitReceiver, classValueReceiver) { getFunctions(name, it) }
fun <С : Candidate> createFunctionProcessor(
fun <C : Candidate> createFunctionProcessor(
scopeTower: ImplicitScopeTower,
name: Name,
simpleContext: CandidateFactory<С>,
factoryProviderForInvoke: CandidateFactoryProviderForInvoke<С>,
simpleContext: CandidateFactory<C>,
factoryProviderForInvoke: CandidateFactoryProviderForInvoke<C>,
explicitReceiver: DetailedReceiver?
): PrioritizedCompositeScopeTowerProcessor<С> {
): PrioritizedCompositeScopeTowerProcessor<C> {
// a.foo() -- simple function call
val simpleFunction = createSimpleFunctionProcessor(scopeTower, name, simpleContext, explicitReceiver)