Run formatter in function context for converted expression and statements
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
while (a > b)
|
||||
{
|
||||
val i = 1
|
||||
i = i + 1
|
||||
while (a > b) {
|
||||
val i = 1
|
||||
i = i + 1
|
||||
}
|
||||
@@ -1,5 +1,4 @@
|
||||
while (a > b)
|
||||
{
|
||||
var i: Int = 1
|
||||
i = i + 1
|
||||
while (a > b) {
|
||||
var i: Int = 1
|
||||
i = i + 1
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
{}
|
||||
while (true) {
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
{}
|
||||
while (true) {
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
i = i + 1
|
||||
i = i + 1
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
i = i + 1
|
||||
i = i + 1
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
return 1
|
||||
return 1
|
||||
@@ -1,2 +1,2 @@
|
||||
while (true)
|
||||
return 1
|
||||
return 1
|
||||
Reference in New Issue
Block a user