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
@@ -40,13 +40,13 @@ abstract class AbstractClassCase1() {
fun case1(){
val a = Case1()
a.<!HIDDEN!>priv<!>()
a.<!HIDDEN!>prot<!>()
a.<!INVISIBLE_REFERENCE!>priv<!>()
a.<!INVISIBLE_REFERENCE!>prot<!>()
a.int()
a.pub()
a.<!HIDDEN!>priv1<!>
a.<!HIDDEN!>prot1<!>
a.<!INVISIBLE_REFERENCE!>priv1<!>
a.<!INVISIBLE_REFERENCE!>prot1<!>
a.int1
a.pub1
}
@@ -59,13 +59,13 @@ import base.*
// TESTCASE NUMBER: 2
fun case2() {
val a = Case1()
a.<!HIDDEN!>priv<!>()
a.<!HIDDEN!>prot<!>()
a.<!HIDDEN!>int<!>()
a.<!INVISIBLE_REFERENCE!>priv<!>()
a.<!INVISIBLE_REFERENCE!>prot<!>()
a.<!INVISIBLE_REFERENCE!>int<!>()
a.pub()
a.<!HIDDEN!>priv1<!>
a.<!HIDDEN!>prot1<!>
a.<!HIDDEN!>int1<!>
a.<!INVISIBLE_REFERENCE!>priv1<!>
a.<!INVISIBLE_REFERENCE!>prot1<!>
a.<!INVISIBLE_REFERENCE!>int1<!>
a.pub1
}