[kotlin uast] Make the findDefaultValueForAnnotationAttribute method work for usages of Java annotations from Kotlin

^KTIJ-27300

GitOrigin-RevId: b363764c07ee11f634b70e150440d80b74022689
This commit is contained in:
Andrey Cherkasov
2023-10-06 08:58:08 +04:00
committed by intellij-monorepo-bot
parent 773cafe668
commit 2e21416fee
10 changed files with 107 additions and 37 deletions

View File

@@ -12,14 +12,14 @@ internal class IncorrectServiceRetrievingInspectionTest : IncorrectServiceRetrie
override fun getFileExtension() = "java"
fun testAppLevelServiceAsProjectLevel() {
doTest()
doTest(true)
}
fun testProjectLevelServiceAsAppLevel() {
doTest()
doTest(true)
}
fun testUnregisteredService() {
doTest()
doTest(true)
}
}