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,5 +1,5 @@
class A {
@property:JsName("x_") <!JS_NAME_ON_ACCESSOR_AND_PROPERTY!>@get:JsName("getX_")<!> val x: Int = 0
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>@get:JsName("getY_") var y: Int = 0<!>
<!JS_NAME_IS_NOT_ON_ALL_ACCESSORS!>@get:JsName("getY_") var y: Int<!> = 0
}