KT-2752: move some diagnostics from entire declarations to their headers

This commit is contained in:
Alexey Andreev
2016-06-23 18:04:56 +03:00
parent fb7f221158
commit 49022fd5bc
17 changed files with 41 additions and 40 deletions
@@ -1,23 +1,23 @@
package foo
class A {
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var x: Int
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var x: Int<!>
@JsName("get_x") get() = 23
set(value) {}<!>
set(value) {}
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var y: Int
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var y: Int<!>
@JsName("get_y") get() = 23
set(value) {}<!>
set(value) {}
var z: Int
@JsName("get_z") get() = 23
@JsName("set_z") set(value) {}
}
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var xx: Int
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var xx: Int<!>
@JsName("get_xx") get() = 23
set(value) {}<!>
set(value) {}
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var A.ext: Int
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>var A.ext: Int<!>
@JsName("get_ext") get() = 23
set(value) {}<!>
set(value) {}