FIR: Change diagnostic for ConeHiddenCandidate to UNRESOLVED_REFERENCE.

The KDoc for @Deprecated states that DeprecationLevel.HIDDEN usages
should look like unresolved references.
This commit is contained in:
Mark Punzalan
2021-09-24 00:12:55 +00:00
committed by TeamCityServer
parent 7425986bf0
commit b8ed46066e
10 changed files with 53 additions and 76 deletions
@@ -115,7 +115,7 @@ fun use(
) {
wd.<!DEPRECATION!>f<!>()
ed.<!DEPRECATION_ERROR!>f<!>()
hd.<!INVISIBLE_REFERENCE!>f<!>()
hd.<!UNRESOLVED_REFERENCE!>f<!>()
we.f()
wh.f()
@@ -115,7 +115,7 @@ fun use(
) {
wd.<!DEPRECATION!>f<!>()
ed.<!DEPRECATION_ERROR!>f<!>()
hd.<!INVISIBLE_REFERENCE!>f<!>()
hd.<!UNRESOLVED_REFERENCE!>f<!>()
we.f()
wh.f()
@@ -107,8 +107,8 @@ fun use(
setterDeprecated.p
setterDeprecated.p <!DEPRECATION!>=<!> 1
hiddenDeprecated.<!INVISIBLE_REFERENCE!>p<!>
hiddenDeprecated.<!INVISIBLE_REFERENCE!>p<!> = 1
hiddenDeprecated.<!UNRESOLVED_REFERENCE!>p<!>
hiddenDeprecated.<!UNRESOLVED_REFERENCE!>p<!> = 1
wd.p
wd.p = 1
@@ -132,5 +132,5 @@ fun use(
ned.p = 1
diff.<!DEPRECATION_ERROR!>p<!>
diff.<!INVISIBLE_REFERENCE!>p<!> = 1
diff.<!UNRESOLVED_REFERENCE!>p<!> = 1
}
@@ -107,8 +107,8 @@ fun use(
setterDeprecated.p
setterDeprecated.p <!DEPRECATION!>=<!> 1
hiddenDeprecated.<!INVISIBLE_REFERENCE!>p<!>
hiddenDeprecated.<!INVISIBLE_REFERENCE!>p<!> = 1
hiddenDeprecated.<!UNRESOLVED_REFERENCE!>p<!>
hiddenDeprecated.<!UNRESOLVED_REFERENCE!>p<!> = 1
wd.p
wd.p = 1
@@ -132,5 +132,5 @@ fun use(
ned.p = 1
diff.<!DEPRECATION_ERROR!>p<!>
diff.<!INVISIBLE_REFERENCE!>p<!> = 1
diff.<!UNRESOLVED_REFERENCE!>p<!> = 1
}
@@ -1,37 +0,0 @@
// !API_VERSION: 1.4
package kotlin
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.4")
class ClassCur
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.4")
fun funCur() {}
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.4")
val valCur = Unit
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.5")
class ClassNext
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.5")
fun funNext() {}
@Deprecated("")
@DeprecatedSinceKotlin(hiddenSince = "1.5")
val valNext = Unit
fun usage() {
<!DEPRECATION_ERROR!>ClassCur<!>()
<!INVISIBLE_REFERENCE!>funCur<!>()
<!INVISIBLE_REFERENCE!>valCur<!>
ClassNext()
funNext()
valNext
}
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// !API_VERSION: 1.4
package kotlin
@@ -27,14 +27,14 @@ var v6: String
set(value) {}
fun test() {
<!INVISIBLE_REFERENCE!>v1<!>
<!INVISIBLE_REFERENCE!>v2<!>
<!INVISIBLE_REFERENCE!>v3<!>
<!UNRESOLVED_REFERENCE!>v1<!>
<!UNRESOLVED_REFERENCE!>v2<!>
<!UNRESOLVED_REFERENCE!>v3<!>
v3 = ""
v4
<!INVISIBLE_REFERENCE!>v4<!> = ""
<!INVISIBLE_REFERENCE!>v5<!>
<!INVISIBLE_REFERENCE!>v5<!> = ""
<!INVISIBLE_REFERENCE!>v6<!>
<!INVISIBLE_REFERENCE!>v6<!> = ""
<!UNRESOLVED_REFERENCE!>v4<!> = ""
<!UNRESOLVED_REFERENCE!>v5<!>
<!UNRESOLVED_REFERENCE!>v5<!> = ""
<!UNRESOLVED_REFERENCE!>v6<!>
<!UNRESOLVED_REFERENCE!>v6<!> = ""
}