Rename ConstraintSystemSnapshot -> ConstraintSystemImpl

This commit is contained in:
Alexander Udalov
2015-10-30 17:25:03 +03:00
parent 265c135e89
commit 3484c049d1
2 changed files with 3 additions and 3 deletions
@@ -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)
}
}
@@ -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>>,