[Analysis API FIR] KtFirPsiTypeProvider: drop redundant TODO
Regular type annotations work as expected ^KT-62351 Obsolete
This commit is contained in:
committed by
Space Team
parent
ba421aa320
commit
5689dedea0
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
// FILE: KotlinClass.kt
|
||||
@Target(AnnotationTarget.TYPE)
|
||||
annotation class MyAnno
|
||||
|
||||
class Kotlin<caret_useSite>Class
|
||||
|
||||
// FILE: A.java
|
||||
public interface A {
|
||||
@MyAnno KotlinClass f<caret>oo();
|
||||
}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
PsiType: PsiType:KotlinClass
|
||||
KtType: @MyAnno KotlinClass?
|
||||
analysis/analysis-api/testData/components/psiTypeProvider/psiType/asKtType/typeAnnotationOnString.kt
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
// FILE: KotlinClass.kt
|
||||
@Target(AnnotationTarget.TYPE)
|
||||
annotation class MyAnno
|
||||
|
||||
class Kotlin<caret_useSite>Class
|
||||
|
||||
// FILE: A.java
|
||||
public interface A {
|
||||
@MyAnno String f<caret>oo();
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
PsiType: PsiType:String
|
||||
KtType: @MyAnno kotlin.String?
|
||||
Reference in New Issue
Block a user