Tear down SubstitutionUtils and move to frontend
This commit is contained in:
@@ -264,7 +264,7 @@ public class TypeResolver {
|
|||||||
List<TypeParameterDescriptor> parameters = constructor.getParameters();
|
List<TypeParameterDescriptor> parameters = constructor.getParameters();
|
||||||
if (parameters.size() > i) {
|
if (parameters.size() > i) {
|
||||||
TypeParameterDescriptor parameterDescriptor = parameters.get(i);
|
TypeParameterDescriptor parameterDescriptor = parameters.get(i);
|
||||||
arguments.add(SubstitutionUtils.makeStarProjection(parameterDescriptor));
|
arguments.add(TypeUtils.makeStarProjection(parameterDescriptor));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
arguments.add(new TypeProjectionImpl(OUT_VARIANCE, ErrorUtils.createErrorType("*")));
|
arguments.add(new TypeProjectionImpl(OUT_VARIANCE, ErrorUtils.createErrorType("*")));
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ public class CastDiagnosticsUtil {
|
|||||||
if (value == null) {
|
if (value == null) {
|
||||||
substitution.put(
|
substitution.put(
|
||||||
variable.getTypeConstructor(),
|
variable.getTypeConstructor(),
|
||||||
SubstitutionUtils.makeStarProjection(variable)
|
TypeUtils.makeStarProjection(variable)
|
||||||
);
|
);
|
||||||
allArgumentsInferred = false;
|
allArgumentsInferred = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,99 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2013 JetBrains s.r.o.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.jet.lang.types;
|
||||||
|
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
import com.google.common.collect.Multimap;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
import org.jetbrains.jet.lang.descriptors.TypeParameterDescriptor;
|
||||||
|
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
||||||
|
import org.jetbrains.jet.utils.CommonSuppliers;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class SubstitutionUtils {
|
||||||
|
private SubstitutionUtils() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds a context with all the supertypes' parameters substituted
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public static TypeSubstitutor buildDeepSubstitutor(@NotNull JetType type) {
|
||||||
|
Map<TypeConstructor, TypeProjection> substitution = Maps.newHashMap();
|
||||||
|
TypeSubstitutor typeSubstitutor = TypeSubstitutor.create(substitution);
|
||||||
|
// we use the mutability of the map here
|
||||||
|
fillInDeepSubstitutor(type, typeSubstitutor, substitution, null);
|
||||||
|
return typeSubstitutor;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
For each supertype of a given type, we map type parameters to type arguments.
|
||||||
|
|
||||||
|
For instance, we have the following class hierarchy:
|
||||||
|
trait Iterable<out T>
|
||||||
|
trait Collection<out E>: Iterable<E>
|
||||||
|
trait MyFooCollection<F>: Collection<Foo<F>>
|
||||||
|
|
||||||
|
For MyFooCollection<out CharSequence>, the following multimap will be returned:
|
||||||
|
T declared in Iterable -> Foo<out CharSequence>
|
||||||
|
E declared in Collection -> Foo<out CharSequence>
|
||||||
|
F declared in MyFooCollection -> out CharSequence
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public static Multimap<TypeConstructor, TypeProjection> buildDeepSubstitutionMultimap(@NotNull JetType type) {
|
||||||
|
Multimap<TypeConstructor, TypeProjection> fullSubstitution = CommonSuppliers.newLinkedHashSetHashSetMultimap();
|
||||||
|
Map<TypeConstructor, TypeProjection> substitution = Maps.newHashMap();
|
||||||
|
TypeSubstitutor typeSubstitutor = TypeSubstitutor.create(substitution);
|
||||||
|
// we use the mutability of the map here
|
||||||
|
fillInDeepSubstitutor(type, typeSubstitutor, substitution, fullSubstitution);
|
||||||
|
return fullSubstitution;
|
||||||
|
}
|
||||||
|
|
||||||
|
// we use the mutability of the substitution map here
|
||||||
|
private static void fillInDeepSubstitutor(
|
||||||
|
@NotNull JetType context,
|
||||||
|
@NotNull TypeSubstitutor substitutor,
|
||||||
|
@NotNull Map<TypeConstructor, TypeProjection> substitution,
|
||||||
|
@Nullable Multimap<TypeConstructor, TypeProjection> fullSubstitution
|
||||||
|
) {
|
||||||
|
List<TypeParameterDescriptor> parameters = context.getConstructor().getParameters();
|
||||||
|
List<TypeProjection> arguments = context.getArguments();
|
||||||
|
|
||||||
|
if (parameters.size() != arguments.size()) {
|
||||||
|
throw new IllegalStateException();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < arguments.size(); i++) {
|
||||||
|
TypeProjection argument = arguments.get(i);
|
||||||
|
TypeParameterDescriptor parameter = parameters.get(i);
|
||||||
|
|
||||||
|
TypeProjection substitute = substitutor.substitute(argument);
|
||||||
|
assert substitute != null;
|
||||||
|
substitution.put(parameter.getTypeConstructor(), substitute);
|
||||||
|
if (fullSubstitution != null) {
|
||||||
|
fullSubstitution.put(parameter.getTypeConstructor(), substitute);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (KotlinBuiltIns.getInstance().isNothingOrNullableNothing(context)) return;
|
||||||
|
for (JetType supertype : context.getConstructor().getSupertypes()) {
|
||||||
|
fillInDeepSubstitutor(supertype, substitutor, substitution, fullSubstitution);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+1
-1
@@ -114,7 +114,7 @@ public abstract class AbstractClassDescriptor implements ClassDescriptor {
|
|||||||
if (typeArguments.isEmpty()) return getScopeForMemberLookup();
|
if (typeArguments.isEmpty()) return getScopeForMemberLookup();
|
||||||
|
|
||||||
List<TypeParameterDescriptor> typeParameters = getTypeConstructor().getParameters();
|
List<TypeParameterDescriptor> typeParameters = getTypeConstructor().getParameters();
|
||||||
Map<TypeConstructor, TypeProjection> substitutionContext = SubstitutionUtils.buildSubstitutionContext(typeParameters, typeArguments);
|
Map<TypeConstructor, TypeProjection> substitutionContext = TypeSubstitutor.buildSubstitutionContext(typeParameters, typeArguments);
|
||||||
|
|
||||||
// Unsafe substitutor is OK, because no recursion can hurt us upon a trivial substitution:
|
// Unsafe substitutor is OK, because no recursion can hurt us upon a trivial substitution:
|
||||||
// all the types are written explicitly in the code already, they can not get infinite.
|
// all the types are written explicitly in the code already, they can not get infinite.
|
||||||
|
|||||||
@@ -1,170 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2010-2013 JetBrains s.r.o.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.jetbrains.jet.lang.types;
|
|
||||||
|
|
||||||
import com.google.common.collect.Maps;
|
|
||||||
import com.google.common.collect.Multimap;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
import org.jetbrains.jet.lang.descriptors.TypeParameterDescriptor;
|
|
||||||
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
|
||||||
import org.jetbrains.jet.utils.CommonSuppliers;
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public class SubstitutionUtils {
|
|
||||||
@NotNull
|
|
||||||
public static Map<TypeConstructor, TypeProjection> buildSubstitutionContext(@NotNull JetType context) {
|
|
||||||
return buildSubstitutionContext(context.getConstructor().getParameters(), context.getArguments());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Builds a context with all the supertypes' parameters substituted
|
|
||||||
*/
|
|
||||||
@NotNull
|
|
||||||
public static TypeSubstitutor buildDeepSubstitutor(@NotNull JetType type) {
|
|
||||||
Map<TypeConstructor, TypeProjection> substitution = Maps.newHashMap();
|
|
||||||
TypeSubstitutor typeSubstitutor = TypeSubstitutor.create(substitution);
|
|
||||||
// we use the mutability of the map here
|
|
||||||
fillInDeepSubstitutor(type, typeSubstitutor, substitution, null);
|
|
||||||
return typeSubstitutor;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
For each supertype of a given type, we map type parameters to type arguments.
|
|
||||||
|
|
||||||
For instance, we have the following class hierarchy:
|
|
||||||
trait Iterable<out T>
|
|
||||||
trait Collection<out E>: Iterable<E>
|
|
||||||
trait MyFooCollection<F>: Collection<Foo<F>>
|
|
||||||
|
|
||||||
For MyFooCollection<out CharSequence>, the following multimap will be returned:
|
|
||||||
T declared in Iterable -> Foo<out CharSequence>
|
|
||||||
E declared in Collection -> Foo<out CharSequence>
|
|
||||||
F declared in MyFooCollection -> out CharSequence
|
|
||||||
*/
|
|
||||||
@NotNull
|
|
||||||
public static Multimap<TypeConstructor, TypeProjection> buildDeepSubstitutionMultimap(@NotNull JetType type) {
|
|
||||||
Multimap<TypeConstructor, TypeProjection> fullSubstitution = CommonSuppliers.newLinkedHashSetHashSetMultimap();
|
|
||||||
Map<TypeConstructor, TypeProjection> substitution = Maps.newHashMap();
|
|
||||||
TypeSubstitutor typeSubstitutor = TypeSubstitutor.create(substitution);
|
|
||||||
// we use the mutability of the map here
|
|
||||||
fillInDeepSubstitutor(type, typeSubstitutor, substitution, fullSubstitution);
|
|
||||||
return fullSubstitution;
|
|
||||||
}
|
|
||||||
|
|
||||||
// we use the mutability of the substitution map here
|
|
||||||
private static void fillInDeepSubstitutor(@NotNull JetType context, @NotNull TypeSubstitutor substitutor, @NotNull Map<TypeConstructor, TypeProjection> substitution, @Nullable Multimap<TypeConstructor, TypeProjection> fullSubstitution) {
|
|
||||||
List<TypeParameterDescriptor> parameters = context.getConstructor().getParameters();
|
|
||||||
List<TypeProjection> arguments = context.getArguments();
|
|
||||||
|
|
||||||
if (parameters.size() != arguments.size()) {
|
|
||||||
throw new IllegalStateException();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = 0; i < arguments.size(); i++) {
|
|
||||||
TypeProjection argument = arguments.get(i);
|
|
||||||
TypeParameterDescriptor parameter = parameters.get(i);
|
|
||||||
|
|
||||||
TypeProjection substitute = substitutor.substitute(argument);
|
|
||||||
assert substitute != null;
|
|
||||||
substitution.put(parameter.getTypeConstructor(), substitute);
|
|
||||||
if (fullSubstitution != null) {
|
|
||||||
fullSubstitution.put(parameter.getTypeConstructor(), substitute);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (KotlinBuiltIns.getInstance().isNothingOrNullableNothing(context)) return;
|
|
||||||
for (JetType supertype : context.getConstructor().getSupertypes()) {
|
|
||||||
fillInDeepSubstitutor(supertype, substitutor, substitution, fullSubstitution);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static Map<TypeConstructor, TypeProjection> buildSubstitutionContext(@NotNull List<TypeParameterDescriptor> parameters, @NotNull List<? extends TypeProjection> contextArguments) {
|
|
||||||
Map<TypeConstructor, TypeProjection> parameterValues = new HashMap<TypeConstructor, TypeProjection>();
|
|
||||||
fillInSubstitutionContext(parameters, contextArguments, parameterValues);
|
|
||||||
return parameterValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void fillInSubstitutionContext(List<TypeParameterDescriptor> parameters, List<? extends TypeProjection> contextArguments, Map<TypeConstructor, TypeProjection> parameterValues) {
|
|
||||||
if (parameters.size() != contextArguments.size()) {
|
|
||||||
throw new IllegalArgumentException("type parameter count != context arguments: \n" +
|
|
||||||
"parameters=" + parameters + "\n" +
|
|
||||||
"contextArgs=" + contextArguments);
|
|
||||||
}
|
|
||||||
for (int i = 0, parametersSize = parameters.size(); i < parametersSize; i++) {
|
|
||||||
TypeParameterDescriptor parameter = parameters.get(i);
|
|
||||||
TypeProjection value = contextArguments.get(i);
|
|
||||||
parameterValues.put(parameter.getTypeConstructor(), value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static TypeProjection makeStarProjection(@NotNull TypeParameterDescriptor parameterDescriptor) {
|
|
||||||
return new TypeProjectionImpl(parameterDescriptor.getVariance() == Variance.OUT_VARIANCE
|
|
||||||
? Variance.INVARIANT
|
|
||||||
: Variance.OUT_VARIANCE, parameterDescriptor.getUpperBoundsAsType());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean hasUnsubstitutedTypeParameters(JetType type) {
|
|
||||||
if (type.getConstructor().getDeclarationDescriptor() instanceof TypeParameterDescriptor) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
for(TypeProjection proj : type.getArguments()) {
|
|
||||||
if (hasUnsubstitutedTypeParameters(proj.getType())) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Map<TypeConstructor, TypeProjection> removeTrivialSubstitutions(Map<TypeConstructor, TypeProjection> context) {
|
|
||||||
Map<TypeConstructor, TypeProjection> clean = Maps.newHashMap(context);
|
|
||||||
boolean changed = false;
|
|
||||||
for (Iterator<Map.Entry<TypeConstructor, TypeProjection>> iterator = clean.entrySet().iterator(); iterator.hasNext(); ) {
|
|
||||||
Map.Entry<TypeConstructor, TypeProjection> entry = iterator.next();
|
|
||||||
TypeConstructor key = entry.getKey();
|
|
||||||
TypeProjection value = entry.getValue();
|
|
||||||
if (key == value.getType().getConstructor() && value.getProjectionKind() == Variance.INVARIANT) {
|
|
||||||
iterator.remove();
|
|
||||||
changed = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return changed ? clean : context;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void assertNotImmediatelyRecursive(Map<TypeConstructor, TypeProjection> context) {
|
|
||||||
// Make sure we never replace a T with "Foo<T>" or something similar,
|
|
||||||
// because the substitution will not terminate in this case
|
|
||||||
// This check is not complete. It does not find cases like
|
|
||||||
// T -> Foo<T1>
|
|
||||||
// T -> Bar<T>
|
|
||||||
|
|
||||||
for (Map.Entry<TypeConstructor, TypeProjection> entry : context.entrySet()) {
|
|
||||||
TypeConstructor key = entry.getKey();
|
|
||||||
TypeProjection value = entry.getValue();
|
|
||||||
if (TypeUtils.typeConstructorUsedInType(key, value.getType())) {
|
|
||||||
throw new IllegalStateException("Immediately recursive substitution: " + context + "\nProblematic parameter: " + key + " -> " + value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -24,6 +24,8 @@ import org.jetbrains.jet.lang.descriptors.TypeParameterDescriptor;
|
|||||||
import org.jetbrains.jet.lang.resolve.scopes.SubstitutingScope;
|
import org.jetbrains.jet.lang.resolve.scopes.SubstitutingScope;
|
||||||
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -72,18 +74,33 @@ public class TypeSubstitutor {
|
|||||||
|
|
||||||
/** No assertion for immediate recursion */
|
/** No assertion for immediate recursion */
|
||||||
public static TypeSubstitutor createUnsafe(@NotNull Map<TypeConstructor, TypeProjection> substitutionContext) {
|
public static TypeSubstitutor createUnsafe(@NotNull Map<TypeConstructor, TypeProjection> substitutionContext) {
|
||||||
Map<TypeConstructor, TypeProjection> cleanContext = SubstitutionUtils.removeTrivialSubstitutions(substitutionContext);
|
Map<TypeConstructor, TypeProjection> cleanContext = removeTrivialSubstitutions(substitutionContext);
|
||||||
return create(new MapToTypeSubstitutionAdapter(cleanContext));
|
return create(new MapToTypeSubstitutionAdapter(cleanContext));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TypeSubstitutor create(@NotNull Map<TypeConstructor, TypeProjection> substitutionContext) {
|
public static TypeSubstitutor create(@NotNull Map<TypeConstructor, TypeProjection> substitutionContext) {
|
||||||
Map<TypeConstructor, TypeProjection> cleanContext = SubstitutionUtils.removeTrivialSubstitutions(substitutionContext);
|
return createUnsafe(removeTrivialSubstitutions(substitutionContext));
|
||||||
//SubstitutionUtils.assertNotImmediatelyRecursive(cleanContext);
|
|
||||||
return createUnsafe(cleanContext);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TypeSubstitutor create(@NotNull JetType context) {
|
public static TypeSubstitutor create(@NotNull JetType context) {
|
||||||
return create(SubstitutionUtils.buildSubstitutionContext(context));
|
return create(buildSubstitutionContext(context.getConstructor().getParameters(), context.getArguments()));
|
||||||
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
public static Map<TypeConstructor, TypeProjection> buildSubstitutionContext(
|
||||||
|
@NotNull List<TypeParameterDescriptor> parameters,
|
||||||
|
@NotNull List<? extends TypeProjection> contextArguments
|
||||||
|
) {
|
||||||
|
Map<TypeConstructor, TypeProjection> parameterValues = new HashMap<TypeConstructor, TypeProjection>();
|
||||||
|
if (parameters.size() != contextArguments.size()) {
|
||||||
|
throw new IllegalArgumentException("type parameter count != context arguments: \n" +
|
||||||
|
"parameters=" + parameters + "\n" +
|
||||||
|
"contextArgs=" + contextArguments);
|
||||||
|
}
|
||||||
|
for (int i = 0, size = parameters.size(); i < size; i++) {
|
||||||
|
parameterValues.put(parameters.get(i).getTypeConstructor(), contextArguments.get(i));
|
||||||
|
}
|
||||||
|
return parameterValues;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -156,7 +173,8 @@ public class TypeSubstitutor {
|
|||||||
case OUT_IN_IN_POSITION:
|
case OUT_IN_IN_POSITION:
|
||||||
throw new SubstitutionException("Out-projection in in-position");
|
throw new SubstitutionException("Out-projection in in-position");
|
||||||
case IN_IN_OUT_POSITION:
|
case IN_IN_OUT_POSITION:
|
||||||
return SubstitutionUtils.makeStarProjection(typeParameter);
|
//noinspection ConstantConditions
|
||||||
|
return TypeUtils.makeStarProjection(typeParameter);
|
||||||
case NO_CONFLICT:
|
case NO_CONFLICT:
|
||||||
boolean resultingIsNullable = type.isNullable() || replacement.getType().isNullable();
|
boolean resultingIsNullable = type.isNullable() || replacement.getType().isNullable();
|
||||||
JetType substitutedType = TypeUtils.makeNullableAsSpecified(replacement.getType(), resultingIsNullable);
|
JetType substitutedType = TypeUtils.makeNullableAsSpecified(replacement.getType(), resultingIsNullable);
|
||||||
@@ -199,7 +217,7 @@ public class TypeSubstitutor {
|
|||||||
break;
|
break;
|
||||||
case OUT_IN_IN_POSITION:
|
case OUT_IN_IN_POSITION:
|
||||||
case IN_IN_OUT_POSITION:
|
case IN_IN_OUT_POSITION:
|
||||||
substitutedTypeArgument = SubstitutionUtils.makeStarProjection(typeParameter);
|
substitutedTypeArgument = TypeUtils.makeStarProjection(typeParameter);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -208,6 +226,22 @@ public class TypeSubstitutor {
|
|||||||
return substitutedArguments;
|
return substitutedArguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
private static Map<TypeConstructor, TypeProjection> removeTrivialSubstitutions(@NotNull Map<TypeConstructor, TypeProjection> context) {
|
||||||
|
Map<TypeConstructor, TypeProjection> clean = new HashMap<TypeConstructor, TypeProjection>(context);
|
||||||
|
boolean changed = false;
|
||||||
|
for (Iterator<Map.Entry<TypeConstructor, TypeProjection>> iterator = clean.entrySet().iterator(); iterator.hasNext(); ) {
|
||||||
|
Map.Entry<TypeConstructor, TypeProjection> entry = iterator.next();
|
||||||
|
TypeConstructor key = entry.getKey();
|
||||||
|
TypeProjection value = entry.getValue();
|
||||||
|
if (key == value.getType().getConstructor() && value.getProjectionKind() == Variance.INVARIANT) {
|
||||||
|
iterator.remove();
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return changed ? clean : context;
|
||||||
|
}
|
||||||
|
|
||||||
private static Variance combine(Variance typeParameterVariance, Variance projectionKind) {
|
private static Variance combine(Variance typeParameterVariance, Variance projectionKind) {
|
||||||
if (typeParameterVariance == Variance.INVARIANT) return projectionKind;
|
if (typeParameterVariance == Variance.INVARIANT) return projectionKind;
|
||||||
if (projectionKind == Variance.INVARIANT) return typeParameterVariance;
|
if (projectionKind == Variance.INVARIANT) return typeParameterVariance;
|
||||||
@@ -218,7 +252,7 @@ public class TypeSubstitutor {
|
|||||||
private enum VarianceConflictType {
|
private enum VarianceConflictType {
|
||||||
NO_CONFLICT,
|
NO_CONFLICT,
|
||||||
IN_IN_OUT_POSITION,
|
IN_IN_OUT_POSITION,
|
||||||
OUT_IN_IN_POSITION;
|
OUT_IN_IN_POSITION
|
||||||
}
|
}
|
||||||
|
|
||||||
private static VarianceConflictType conflictType(Variance position, Variance argument) {
|
private static VarianceConflictType conflictType(Variance position, Variance argument) {
|
||||||
|
|||||||
@@ -547,10 +547,16 @@ public class TypeUtils {
|
|||||||
return builder.toString();
|
return builder.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
public static TypeProjection makeStarProjection(@NotNull TypeParameterDescriptor parameterDescriptor) {
|
||||||
|
return new TypeProjectionImpl(parameterDescriptor.getVariance() == Variance.OUT_VARIANCE
|
||||||
|
? Variance.INVARIANT
|
||||||
|
: Variance.OUT_VARIANCE, parameterDescriptor.getUpperBoundsAsType());
|
||||||
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static JetType commonSupertypeForNumberTypes(@NotNull Collection<JetType> numberLowerBounds) {
|
public static JetType commonSupertypeForNumberTypes(@NotNull Collection<JetType> numberLowerBounds) {
|
||||||
if (numberLowerBounds.isEmpty()) return null;
|
if (numberLowerBounds.isEmpty()) return null;
|
||||||
assert !numberLowerBounds.isEmpty();
|
|
||||||
Set<JetType> intersectionOfSupertypes = getIntersectionOfSupertypes(numberLowerBounds);
|
Set<JetType> intersectionOfSupertypes = getIntersectionOfSupertypes(numberLowerBounds);
|
||||||
JetType primitiveNumberType = getDefaultPrimitiveNumberType(intersectionOfSupertypes);
|
JetType primitiveNumberType = getDefaultPrimitiveNumberType(intersectionOfSupertypes);
|
||||||
if (primitiveNumberType != null) {
|
if (primitiveNumberType != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user