Rename: TypeConstructorMismatch -> ParameterConstraintError

This commit is contained in:
Svetlana Isakova
2015-07-08 12:07:28 +03:00
parent 016a8f69da
commit 722a49767a
141 changed files with 159 additions and 158 deletions
@@ -458,7 +458,7 @@ public interface Errors {
DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER = DiagnosticFactory1.create(ERROR); DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER = DiagnosticFactory1.create(ERROR);
DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS = DiagnosticFactory1.create(ERROR); DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS = DiagnosticFactory1.create(ERROR);
DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_CANNOT_CAPTURE_TYPES = DiagnosticFactory1.create(ERROR); DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_CANNOT_CAPTURE_TYPES = DiagnosticFactory1.create(ERROR);
DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH = DiagnosticFactory1.create(ERROR); DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR = DiagnosticFactory1.create(ERROR);
DiagnosticFactory0<PsiElement> TYPE_INFERENCE_INCORPORATION_ERROR = DiagnosticFactory0.create(ERROR); DiagnosticFactory0<PsiElement> TYPE_INFERENCE_INCORPORATION_ERROR = DiagnosticFactory0.create(ERROR);
DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_UPPER_BOUND_VIOLATED = DiagnosticFactory1.create(ERROR); DiagnosticFactory1<PsiElement, InferenceErrorData> TYPE_INFERENCE_UPPER_BOUND_VIOLATED = DiagnosticFactory1.create(ERROR);
DiagnosticFactory2<JetExpression, JetType, JetType> TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH = DiagnosticFactory2.create(ERROR); DiagnosticFactory2<JetExpression, JetType, JetType> TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH = DiagnosticFactory2.create(ERROR);
@@ -708,7 +708,8 @@ public interface Errors {
UNUSED_VARIABLE, UNUSED_PARAMETER, ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE, VARIABLE_WITH_REDUNDANT_INITIALIZER, UNUSED_VARIABLE, UNUSED_PARAMETER, ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE, VARIABLE_WITH_REDUNDANT_INITIALIZER,
UNUSED_FUNCTION_LITERAL, USELESS_CAST, UNUSED_VALUE, USELESS_ELVIS); UNUSED_FUNCTION_LITERAL, USELESS_CAST, UNUSED_VALUE, USELESS_ELVIS);
ImmutableSet<? extends DiagnosticFactory<?>> TYPE_INFERENCE_ERRORS = ImmutableSet.of( ImmutableSet<? extends DiagnosticFactory<?>> TYPE_INFERENCE_ERRORS = ImmutableSet.of(
TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER, TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS, TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH, TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER, TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS,
TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR,
TYPE_INFERENCE_UPPER_BOUND_VIOLATED, TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH); TYPE_INFERENCE_UPPER_BOUND_VIOLATED, TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -592,7 +592,7 @@ public class DefaultErrorMessages {
MAP.put(TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS, "Type inference failed: {0}", TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS_RENDERER); MAP.put(TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS, "Type inference failed: {0}", TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS_RENDERER);
MAP.put(TYPE_INFERENCE_CANNOT_CAPTURE_TYPES, "Type inference failed: {0}", TYPE_INFERENCE_CANNOT_CAPTURE_TYPES_RENDERER); MAP.put(TYPE_INFERENCE_CANNOT_CAPTURE_TYPES, "Type inference failed: {0}", TYPE_INFERENCE_CANNOT_CAPTURE_TYPES_RENDERER);
MAP.put(TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER, "Type inference failed: {0}", TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER_RENDERER); MAP.put(TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER, "Type inference failed: {0}", TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER_RENDERER);
MAP.put(TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH, "Type inference failed: {0}", TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH_RENDERER); MAP.put(TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR, "Type inference failed: {0}", TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR_RENDERER);
MAP.put(TYPE_INFERENCE_INCORPORATION_ERROR, "Type inference failed. Please try to specify type arguments explicitly."); MAP.put(TYPE_INFERENCE_INCORPORATION_ERROR, "Type inference failed. Please try to specify type arguments explicitly.");
MAP.put(TYPE_INFERENCE_UPPER_BOUND_VIOLATED, "{0}", TYPE_INFERENCE_UPPER_BOUND_VIOLATED_RENDERER); MAP.put(TYPE_INFERENCE_UPPER_BOUND_VIOLATED, "{0}", TYPE_INFERENCE_UPPER_BOUND_VIOLATED_RENDERER);
MAP.put(TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH, "Type inference failed. Expected type mismatch: found: {1} required: {0}", RENDER_TYPE, RENDER_TYPE); MAP.put(TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH, "Type inference failed. Expected type mismatch: found: {1} required: {0}", RENDER_TYPE, RENDER_TYPE);
@@ -123,8 +123,8 @@ public object Renderers {
renderConflictingSubstitutionsInferenceError(it, TabledDescriptorRenderer.create()).toString() renderConflictingSubstitutionsInferenceError(it, TabledDescriptorRenderer.create()).toString()
} }
public val TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH_RENDERER: Renderer<InferenceErrorData> = Renderer { public val TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR_RENDERER: Renderer<InferenceErrorData> = Renderer {
renderTypeConstructorMismatchError(it, TabledDescriptorRenderer.create()).toString() renderParameterConstraintError(it, TabledDescriptorRenderer.create()).toString()
} }
public val TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER_RENDERER: Renderer<InferenceErrorData> = Renderer { public val TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER_RENDERER: Renderer<InferenceErrorData> = Renderer {
@@ -195,11 +195,11 @@ public object Renderers {
} }
platformStatic platformStatic
public fun renderTypeConstructorMismatchError( public fun renderParameterConstraintError(
inferenceErrorData: InferenceErrorData, renderer: TabledDescriptorRenderer inferenceErrorData: InferenceErrorData, renderer: TabledDescriptorRenderer
): TabledDescriptorRenderer { ): TabledDescriptorRenderer {
val constraintErrors = (inferenceErrorData.constraintSystem as ConstraintSystemImpl).constraintErrors val constraintErrors = (inferenceErrorData.constraintSystem as ConstraintSystemImpl).constraintErrors
val errorPositions = constraintErrors.filter { it is TypeConstructorMismatch }.map { it.constraintPosition } val errorPositions = constraintErrors.filter { it is ParameterConstraintError }.map { it.constraintPosition }
return renderer.table( return renderer.table(
TabledDescriptorRenderer TabledDescriptorRenderer
.newTable() .newTable()
@@ -227,8 +227,8 @@ public abstract class AbstractTracingStrategy implements TracingStrategy {
else if (status.hasViolatedUpperBound()) { else if (status.hasViolatedUpperBound()) {
trace.report(TYPE_INFERENCE_UPPER_BOUND_VIOLATED.on(reference, data)); trace.report(TYPE_INFERENCE_UPPER_BOUND_VIOLATED.on(reference, data));
} }
else if (status.hasTypeConstructorMismatch()) { else if (status.hasParameterConstraintError()) {
trace.report(TYPE_INFERENCE_TYPE_CONSTRUCTOR_MISMATCH.on(reference, data)); trace.report(TYPE_INFERENCE_PARAMETER_CONSTRAINT_ERROR.on(reference, data));
} }
else if (status.hasConflictingConstraints()) { else if (status.hasConflictingConstraints()) {
trace.report(TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS.on(reference, data)); trace.report(TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS.on(reference, data));
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: true -hasConflictingConstraints: true
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -10,7 +10,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -10,7 +10,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: true -hasConflictingConstraints: true
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: true -hasViolatedUpperBound: true
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: true -hasConflictingConstraints: true
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: true -hasConflictingConstraints: true
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -10,7 +10,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,7 +11,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -15,7 +15,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -15,7 +15,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -15,7 +15,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -20,4 +20,4 @@ status:
result: result:
T=Int T=Int
P=Consumer<Consumer<Int>> P=Consumer<Consumer<Int>>
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -14,7 +14,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -14,7 +14,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -14,7 +14,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -15,7 +15,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -14,7 +14,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -11,11 +11,11 @@ status:
-hasConflictingConstraints: true -hasConflictingConstraints: true
-hasContradiction: true -hasContradiction: true
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: true -hasTypeInferenceIncorporationError: true
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
-isSuccessful: false -isSuccessful: false
result: result:
T=??? T=???
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: true -hasUnknownParameters: true
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false
@@ -12,7 +12,7 @@ status:
-hasConflictingConstraints: false -hasConflictingConstraints: false
-hasContradiction: false -hasContradiction: false
-hasErrorInConstrainingTypes: false -hasErrorInConstrainingTypes: false
-hasTypeConstructorMismatch: false -hasParameterConstraintError: false
-hasTypeInferenceIncorporationError: false -hasTypeInferenceIncorporationError: false
-hasUnknownParameters: false -hasUnknownParameters: false
-hasViolatedUpperBound: false -hasViolatedUpperBound: false

Some files were not shown because too many files have changed in this diff Show More