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
@@ -2,7 +2,7 @@ package foo
fun test() {
A.d
A.Companion.<!HIDDEN!>f<!>
A.Companion.<!INVISIBLE_REFERENCE!>f<!>
B.D
CCC
CCC.classObjectVar
@@ -35,14 +35,14 @@ import a.D
fun test() {
f(A)
f(<!HIDDEN!>B<!>)
f(<!INVISIBLE_REFERENCE!>B<!>)
f(C)
f(<!HIDDEN!>D<!>)
f(<!INVISIBLE_REFERENCE!>D<!>)
A.foo()
<!HIDDEN!>B<!>.bar()
<!INVISIBLE_REFERENCE!>B<!>.bar()
C.baz()
<!HIDDEN!>D<!>.quux()
<!INVISIBLE_REFERENCE!>D<!>.quux()
a.A.foo()
a.C.baz()