[FIR] Report illegal in/out modifier on star projection
#KT-55668 Fixed
This commit is contained in:
committed by
Space Team
parent
0c3d5c11b1
commit
8afc8950e6
+1
@@ -17,5 +17,6 @@ object CommonTypeCheckers : TypeCheckers() {
|
||||
FirDefinitelyNotNullableChecker,
|
||||
FirUnsupportedDefaultValueInFunctionTypeParameterChecker,
|
||||
FirUnsupportedModifiersInFunctionTypeParameterChecker,
|
||||
FirStarProjectionModifierChecker,
|
||||
)
|
||||
}
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.fir.analysis.checkers.type
|
||||
|
||||
import org.jetbrains.kotlin.KtRealSourceElementKind
|
||||
import org.jetbrains.kotlin.descriptors.annotations.KotlinTarget
|
||||
import org.jetbrains.kotlin.diagnostics.DiagnosticReporter
|
||||
import org.jetbrains.kotlin.diagnostics.reportOn
|
||||
import org.jetbrains.kotlin.fir.analysis.checkers.context.CheckerContext
|
||||
import org.jetbrains.kotlin.fir.analysis.checkers.getModifierList
|
||||
import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
|
||||
import org.jetbrains.kotlin.fir.types.*
|
||||
|
||||
object FirStarProjectionModifierChecker : FirTypeRefChecker() {
|
||||
override fun check(typeRef: FirTypeRef, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (typeRef !is FirResolvedTypeRef) return
|
||||
|
||||
val delegatedTypeRef = typeRef.delegatedTypeRef as? FirUserTypeRef ?: return
|
||||
for (part in delegatedTypeRef.qualifier) {
|
||||
for (typeArgument in part.typeArgumentList.typeArguments) {
|
||||
if (typeArgument !is FirStarProjection) continue
|
||||
val source = typeArgument.source?.takeIf { it.kind is KtRealSourceElementKind } ?: continue
|
||||
val modifierList = source.getModifierList() ?: continue
|
||||
|
||||
for (modifier in modifierList.modifiers) {
|
||||
reporter.reportOn(
|
||||
modifier.source,
|
||||
FirErrors.WRONG_MODIFIER_TARGET,
|
||||
modifier.token,
|
||||
KotlinTarget.STAR_PROJECTION.description,
|
||||
context,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
// Reproduces exception in TypeResolver.kt: EA-66870
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
abstract class J {
|
||||
public abstract fun <T : Collection<S>, S : List<in *>> foo(x: T)
|
||||
fun bar() {
|
||||
val s = ArrayList<ArrayList<Int>>()
|
||||
foo(s)
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
// Reproduces exception in TypeResolver.kt: EA-66870
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
// Reproduces exception in TypeResolver.kt: EA-66870
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
abstract class J {
|
||||
public abstract fun <T : Collection<S>, S : List<out *>> foo(x: T)
|
||||
fun bar() {
|
||||
val s = ArrayList<ArrayList<Int>>()
|
||||
foo(s)
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
// Reproduces exception in TypeResolver.kt: EA-66870
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
Reference in New Issue
Block a user