FIR: rename HIDDEN to INVISIBLE_REFERENCE

Some of them should be INVISIBLE_MEMBER though
This commit is contained in:
pyos
2021-04-19 10:14:16 +02:00
committed by Mikhail Glukhikh
parent f1cf6b54e7
commit e6d923f65c
139 changed files with 284 additions and 468 deletions
@@ -19,15 +19,15 @@ open class A {
fun fromOutside() {
devNull(A.internal_val)
devNull(A.public_val)
devNull(A.<!HIDDEN!>private_val<!>)
devNull(A.<!HIDDEN!>protected_val<!>)
devNull(A.<!INVISIBLE_REFERENCE!>private_val<!>)
devNull(A.<!INVISIBLE_REFERENCE!>protected_val<!>)
}
class B: A() {
fun fromSubclass() {
devNull(A.internal_val)
devNull(A.public_val)
devNull(A.<!HIDDEN!>private_val<!>)
devNull(A.<!INVISIBLE_REFERENCE!>private_val<!>)
devNull(A.protected_val)
}
}