Formatter: Fix spacing between '=' and '{' in property accessors

This commit is contained in:
Alexey Sedunov
2014-12-22 19:38:43 +03:00
parent e76792d4f2
commit 05a0481efa
7 changed files with 35 additions and 4 deletions
@@ -1,4 +1,4 @@
val foo: String
get() {
get() {
return "abc"
}
@@ -1,6 +1,6 @@
// WITH_RUNTIME
val foo: String
get() {
get() {
throw UnsupportedOperationException()
}
@@ -1,6 +1,6 @@
var foo: String
get() = "abc"
set(value) {
set(value) {
doSet(value)
}