From 56475c0a5bcb098902dbee67a89c81573711dc04 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Wed, 24 Jan 2024 13:40:27 +0100 Subject: [PATCH] Rename: builderInferenceSession -> pclaInferenceSession --- .../fir/resolve/inference/PostponedArgumentsAnalyzer.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/PostponedArgumentsAnalyzer.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/PostponedArgumentsAnalyzer.kt index f3131cac768..3035f94400c 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/PostponedArgumentsAnalyzer.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/PostponedArgumentsAnalyzer.kt @@ -116,11 +116,11 @@ class PostponedArgumentsAnalyzer( } val additionalBindings: Map? = - (resolutionContext.bodyResolveContext.inferenceSession as? FirPCLAInferenceSession)?.let { builderInferenceSession -> + (resolutionContext.bodyResolveContext.inferenceSession as? FirPCLAInferenceSession)?.let { pclaInferenceSession -> // TODO: Fix variables for context receivers, too (KT-64859) buildMap { lambda.receiver - ?.let { builderInferenceSession.fixVariablesForMemberScope(it, candidate.system) } + ?.let { pclaInferenceSession.fixVariablesForMemberScope(it, candidate.system) } ?.let(this::plusAssign) } }