Add space after a semicolon only if there's another child at the same line

This commit is contained in:
Nikolay Krasko
2016-06-21 11:56:22 +03:00
committed by Nikolay Krasko
parent b560aab06d
commit f8196d8331
3 changed files with 17 additions and 1 deletions
+3
View File
@@ -1,3 +1,6 @@
fun foo() {
""; ""
"";
// var = 1
}
+3
View File
@@ -1,3 +1,6 @@
fun foo() {
"" ; ""
"";
// var = 1
}