Formatter: Leave single space between val/var and value parameter

This commit is contained in:
Alexey Sedunov
2015-12-23 16:23:10 +03:00
parent 2895e2e86f
commit 5dcf531048
4 changed files with 20 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
class Foo(val x: Int,
var y: Int) {
val a = 1
var b = 2
}