Minor. Make properties in KotlinResolutionCallbacksImpl private
This commit is contained in:
committed by
Mikhail Zarechenskiy
parent
4c04ad2371
commit
840acbac68
+17
-17
@@ -58,24 +58,24 @@ data class LambdaContextInfo(
|
|||||||
|
|
||||||
class KotlinResolutionCallbacksImpl(
|
class KotlinResolutionCallbacksImpl(
|
||||||
val trace: BindingTrace,
|
val trace: BindingTrace,
|
||||||
val expressionTypingServices: ExpressionTypingServices,
|
private val expressionTypingServices: ExpressionTypingServices,
|
||||||
val typeApproximator: TypeApproximator,
|
private val typeApproximator: TypeApproximator,
|
||||||
val argumentTypeResolver: ArgumentTypeResolver,
|
private val argumentTypeResolver: ArgumentTypeResolver,
|
||||||
val languageVersionSettings: LanguageVersionSettings,
|
private val languageVersionSettings: LanguageVersionSettings,
|
||||||
val kotlinToResolvedCallTransformer: KotlinToResolvedCallTransformer,
|
private val kotlinToResolvedCallTransformer: KotlinToResolvedCallTransformer,
|
||||||
val dataFlowValueFactory: DataFlowValueFactory,
|
private val dataFlowValueFactory: DataFlowValueFactory,
|
||||||
override val inferenceSession: InferenceSession,
|
override val inferenceSession: InferenceSession,
|
||||||
val constantExpressionEvaluator: ConstantExpressionEvaluator,
|
private val constantExpressionEvaluator: ConstantExpressionEvaluator,
|
||||||
val typeResolver: TypeResolver,
|
private val typeResolver: TypeResolver,
|
||||||
val psiCallResolver: PSICallResolver,
|
private val psiCallResolver: PSICallResolver,
|
||||||
val postponedArgumentsAnalyzer: PostponedArgumentsAnalyzer,
|
private val postponedArgumentsAnalyzer: PostponedArgumentsAnalyzer,
|
||||||
val kotlinConstraintSystemCompleter: KotlinConstraintSystemCompleter,
|
private val kotlinConstraintSystemCompleter: KotlinConstraintSystemCompleter,
|
||||||
val callComponents: KotlinCallComponents,
|
private val callComponents: KotlinCallComponents,
|
||||||
val doubleColonExpressionResolver: DoubleColonExpressionResolver,
|
private val doubleColonExpressionResolver: DoubleColonExpressionResolver,
|
||||||
val deprecationResolver: DeprecationResolver,
|
private val deprecationResolver: DeprecationResolver,
|
||||||
val moduleDescriptor: ModuleDescriptor,
|
private val moduleDescriptor: ModuleDescriptor,
|
||||||
val topLevelCallContext: BasicCallResolutionContext?,
|
private val topLevelCallContext: BasicCallResolutionContext?,
|
||||||
val missingSupertypesResolver: MissingSupertypesResolver
|
private val missingSupertypesResolver: MissingSupertypesResolver
|
||||||
) : KotlinResolutionCallbacks {
|
) : KotlinResolutionCallbacks {
|
||||||
class LambdaInfo(val expectedType: UnwrappedType, val contextDependency: ContextDependency) {
|
class LambdaInfo(val expectedType: UnwrappedType, val contextDependency: ContextDependency) {
|
||||||
val returnStatements = ArrayList<Pair<KtReturnExpression, LambdaContextInfo?>>()
|
val returnStatements = ArrayList<Pair<KtReturnExpression, LambdaContextInfo?>>()
|
||||||
|
|||||||
Reference in New Issue
Block a user