Wrap diagnostic parameters to double quotes and split by comma instead of semicolon
This commit is contained in:
@@ -29,21 +29,21 @@ package a
|
||||
|
||||
fun test() {
|
||||
val y = makeA()
|
||||
y.<!INVISIBLE_MEMBER(A; private; file)!>bar<!>()
|
||||
<!INVISIBLE_MEMBER(foo; private; file)!>foo<!>()
|
||||
y.<!INVISIBLE_MEMBER("A", "private", "file")!>bar<!>()
|
||||
<!INVISIBLE_MEMBER("foo", "private", "file")!>foo<!>()
|
||||
|
||||
val u : <!INVISIBLE_REFERENCE(A; private; file)!>A<!> = <!INVISIBLE_MEMBER(A; private; file)!>A<!>()
|
||||
val u : <!INVISIBLE_REFERENCE("A", "private", "file")!>A<!> = <!INVISIBLE_MEMBER("A", "private", "file")!>A<!>()
|
||||
|
||||
val z = <!INVISIBLE_MEMBER(x; private; file)!>x<!>
|
||||
<!INVISIBLE_MEMBER(x; private; file)!>x<!> = 30
|
||||
val z = <!INVISIBLE_MEMBER("x", "private", "file")!>x<!>
|
||||
<!INVISIBLE_MEMBER("x", "private", "file")!>x<!> = 30
|
||||
|
||||
val po = <!INVISIBLE_MEMBER(PO; private; file)!>PO<!>
|
||||
val po = <!INVISIBLE_MEMBER("PO", "private", "file")!>PO<!>
|
||||
|
||||
val v = xx
|
||||
<!INVISIBLE_SETTER(xx; private; file)!>xx<!> = 40
|
||||
<!INVISIBLE_SETTER("xx", "private", "file")!>xx<!> = 40
|
||||
}
|
||||
|
||||
class B : <!EXPOSED_SUPER_CLASS!><!INVISIBLE_MEMBER(A; private; file), INVISIBLE_REFERENCE(A; private; file)!>A<!>()<!> {}
|
||||
class B : <!EXPOSED_SUPER_CLASS!><!INVISIBLE_MEMBER("A", "private", "file"), INVISIBLE_REFERENCE("A", "private", "file")!>A<!>()<!> {}
|
||||
|
||||
class Q {
|
||||
class W {
|
||||
|
||||
Reference in New Issue
Block a user