Use binary expression as parent for better spacing (KT-27717)

When BINARY_EXPRESSION is used as parent, spacing rules for it are applied.
There're no rules for OPERATION_REFERENCE on the other side.

 #KT-27717 Fixed
This commit is contained in:
Nikolay Krasko
2018-10-30 18:15:18 +03:00
parent 2684974a33
commit 6f719a9460
5 changed files with 26 additions and 3 deletions
+5
View File
@@ -27,6 +27,11 @@ class Some {
12%3*12/3
1..2
null ?: 3 + 1
val a = 1
null ?: a + a
}
}