Rename ConstraintSystemSnapshot -> ConstraintSystemImpl
This commit is contained in:
+2
-2
@@ -378,8 +378,8 @@ public class ConstraintSystemBuilderImpl : ConstraintSystem.Builder {
|
||||
}
|
||||
|
||||
override fun build(): ConstraintSystem {
|
||||
return ConstraintSystemSnapshot(allTypeParameterBounds, externalTypeParameters, usedInBounds, errors, initialConstraints,
|
||||
originalToVariables, variablesToOriginal)
|
||||
return ConstraintSystemImpl(allTypeParameterBounds, externalTypeParameters, usedInBounds, errors, initialConstraints,
|
||||
originalToVariables, variablesToOriginal)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@ import org.jetbrains.kotlin.types.typeUtil.getNestedArguments
|
||||
import org.jetbrains.kotlin.types.typeUtil.makeNotNullable
|
||||
import java.util.*
|
||||
|
||||
class ConstraintSystemSnapshot(
|
||||
class ConstraintSystemImpl(
|
||||
private val allTypeParameterBounds: Map<TypeParameterDescriptor, TypeBoundsImpl>,
|
||||
private val externalTypeParameters: Set<TypeParameterDescriptor>,
|
||||
private val usedInBounds: Map<TypeParameterDescriptor, MutableList<TypeBounds.Bound>>,
|
||||
Reference in New Issue
Block a user