TrailingCommaPostFormatProcessor: should be completed in one round
#KT-34744
This commit is contained in:
+49
-61
@@ -26,28 +26,15 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)),
|
||||
testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)),
|
||||
testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -59,9 +46,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
)
|
||||
@@ -83,9 +68,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable({ println("Hello world") }
|
||||
)
|
||||
@@ -107,9 +90,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(foo() { println("Hello world") }
|
||||
)
|
||||
@@ -208,9 +189,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(foofoo, foofoo, foofoo, foofoo/*
|
||||
*/, /* */ bar
|
||||
@@ -223,9 +202,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -233,39 +210,17 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/
|
||||
testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
))/* */, /**/
|
||||
testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
))/*
|
||||
*/,
|
||||
testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo))/*
|
||||
*/, testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/
|
||||
testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /*
|
||||
*/
|
||||
testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/testsa)
|
||||
|
||||
useCallable("B", "C", Callable {
|
||||
println("Hello world")
|
||||
@@ -275,4 +230,37 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+54
-81
@@ -32,36 +32,15 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -77,9 +56,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
@@ -107,9 +84,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
@@ -137,9 +112,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
@@ -267,9 +240,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, foofoo, foofoo,
|
||||
@@ -287,9 +258,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -297,56 +266,21 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/* */ /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/*
|
||||
testtest(testtest(foofoo)),/*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /*
|
||||
foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
@@ -364,4 +298,43 @@ fun foo() {
|
||||
useCallable(
|
||||
Callable { println("Hello world") }, // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+19
@@ -197,4 +197,23 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(object : Callable<Unit> { override fun call() { println("Hello world") }
|
||||
},)
|
||||
|
||||
useCallable(foo() { println("Hello world")
|
||||
},)
|
||||
|
||||
useCallable({
|
||||
println("Hello world") },)
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
,)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,)), testsa)
|
||||
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo))
|
||||
,)
|
||||
|
||||
}
|
||||
+47
-42
@@ -26,23 +26,15 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -54,9 +46,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
)
|
||||
@@ -78,9 +68,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable({ println("Hello world") }
|
||||
)
|
||||
@@ -102,9 +90,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(foo() { println("Hello world") }
|
||||
)
|
||||
@@ -203,9 +189,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(foofoo, foofoo, foofoo, foofoo/*
|
||||
*/, /* */ bar
|
||||
@@ -218,9 +202,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -228,26 +210,16 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
))/* */, /**/testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
))/*
|
||||
testtest(foofoo, testtest(testtest(foofoo))/*
|
||||
*/, testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), /*
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/testsa)
|
||||
|
||||
useCallable("B", "C", Callable {
|
||||
@@ -258,4 +230,37 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+54
-78
@@ -32,35 +32,15 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -76,9 +56,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
@@ -106,9 +84,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
@@ -136,9 +112,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
@@ -266,9 +240,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, foofoo, foofoo,
|
||||
@@ -286,9 +258,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -296,54 +266,21 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/* */ /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/*
|
||||
testtest(testtest(foofoo)),/*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /*
|
||||
foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
@@ -361,4 +298,43 @@ fun foo() {
|
||||
useCallable(
|
||||
Callable { println("Hello world") }, // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+19
@@ -197,4 +197,23 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(object : Callable<Unit> { override fun call() { println("Hello world") }
|
||||
},)
|
||||
|
||||
useCallable(foo() { println("Hello world")
|
||||
},)
|
||||
|
||||
useCallable({
|
||||
println("Hello world") },)
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
,)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,)), testsa)
|
||||
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo))
|
||||
,)
|
||||
|
||||
}
|
||||
+50
-39
@@ -50,9 +50,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(foofoo)))
|
||||
@@ -64,16 +62,12 @@ fun foo() {
|
||||
)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)),
|
||||
testtest(testtest(foofoo)),
|
||||
testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)),
|
||||
testtest(testtest(foofoo)),
|
||||
testsa)
|
||||
|
||||
useCallable("A",
|
||||
@@ -90,9 +84,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
)
|
||||
@@ -118,9 +110,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable({ println("Hello world") }
|
||||
)
|
||||
@@ -146,9 +136,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(foo() { println("Hello world") }
|
||||
)
|
||||
@@ -270,9 +258,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(foofoo,
|
||||
foofoo,
|
||||
@@ -289,9 +275,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
@@ -301,36 +285,26 @@ fun foo() {
|
||||
)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/
|
||||
testtest(testtest(foofoo)), /**/
|
||||
testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
))/* */, /**/
|
||||
testtest(testtest(foofoo))/* */, /**/
|
||||
testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
))/*
|
||||
testtest(testtest(foofoo))/*
|
||||
*/,
|
||||
testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/
|
||||
testtest(testtest(foofoo)), /**/
|
||||
testsa)
|
||||
|
||||
testtest(foofoo,
|
||||
seee,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)), /*
|
||||
testtest(testtest(foofoo)), /*
|
||||
*/
|
||||
testsa)
|
||||
|
||||
@@ -345,4 +319,41 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(foofoo,
|
||||
testtest(testtest(
|
||||
foofoo,
|
||||
)),
|
||||
testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
fososos,
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+54
-53
@@ -56,9 +56,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
@@ -73,22 +71,14 @@ fun foo() {
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testtest(testtest(foofoo)),
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testtest(testtest(foofoo)),
|
||||
testsa,
|
||||
)
|
||||
|
||||
@@ -110,9 +100,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
@@ -144,9 +132,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
@@ -178,9 +164,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
@@ -325,9 +309,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
@@ -347,9 +329,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
@@ -360,31 +340,19 @@ fun foo() {
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testtest(testtest(foofoo)), /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/* */ /**/
|
||||
testtest(testtest(foofoo)),/* */ /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/*
|
||||
testtest(testtest(foofoo)),/*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
@@ -392,22 +360,14 @@ fun foo() {
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testtest(testtest(foofoo)), /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /*
|
||||
testtest(testtest(foofoo)), /*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
@@ -426,4 +386,45 @@ fun foo() {
|
||||
useCallable(
|
||||
Callable { println("Hello world") }, // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
fososos,
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+19
@@ -205,4 +205,23 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(object : Callable<Unit> { override fun call() { println("Hello world") }
|
||||
},)
|
||||
|
||||
useCallable(foo() { println("Hello world")
|
||||
},)
|
||||
|
||||
useCallable({
|
||||
println("Hello world") },)
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
,)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,)), testsa)
|
||||
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo))
|
||||
,)
|
||||
|
||||
}
|
||||
+47
-42
@@ -26,23 +26,15 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -54,9 +46,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
)
|
||||
@@ -78,9 +68,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable({ println("Hello world") }
|
||||
)
|
||||
@@ -102,9 +90,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(foo() { println("Hello world") }
|
||||
)
|
||||
@@ -203,9 +189,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(foofoo, foofoo, foofoo, foofoo/*
|
||||
*/, /* */ bar
|
||||
@@ -218,9 +202,7 @@ fun foo() {
|
||||
foofoo
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -228,26 +210,16 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
))/* */, /**/testsa)
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
))/*
|
||||
testtest(foofoo, testtest(testtest(foofoo))/*
|
||||
*/, testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), /**/testsa)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, seee, testtest(testtest(
|
||||
foofoo,
|
||||
)), /*
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/testsa)
|
||||
|
||||
useCallable("B", "C", Callable {
|
||||
@@ -258,4 +230,37 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,
|
||||
)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+54
-78
@@ -32,35 +32,15 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
)
|
||||
testtest(foofoo)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo)))
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), testsa)
|
||||
|
||||
useCallable("A", Callable { println("Hello world") })
|
||||
|
||||
@@ -76,9 +56,7 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
useCallable(Callable { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
@@ -106,9 +84,7 @@ fun foo() {
|
||||
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
)
|
||||
useCallable({ println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
{ println("Hello world") },
|
||||
@@ -136,9 +112,7 @@ fun foo() {
|
||||
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
)
|
||||
useCallable(foo() { println("Hello world") })
|
||||
|
||||
useCallable(
|
||||
foo() { println("Hello world") },
|
||||
@@ -266,9 +240,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, foofoo, foofoo,
|
||||
@@ -286,9 +258,7 @@ fun foo() {
|
||||
foofoo,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,/**/
|
||||
)
|
||||
testtest(foofoo/**/)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos,/*
|
||||
@@ -296,54 +266,21 @@ fun foo() {
|
||||
testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(foofoo, testtest(testtest(foofoo))/* */, /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/* */ /**/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),/*
|
||||
testtest(testtest(foofoo)),/*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /**/
|
||||
testsa,
|
||||
)
|
||||
testtest(foofoo, seee, testtest(testtest(foofoo)), /**/testsa)
|
||||
|
||||
testtest(
|
||||
foofoo, seee,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
), /*
|
||||
foofoo, seee, testtest(testtest(foofoo)), /*
|
||||
*/
|
||||
testsa,
|
||||
)
|
||||
@@ -361,4 +298,43 @@ fun foo() {
|
||||
useCallable(
|
||||
Callable { println("Hello world") }, // ffd
|
||||
)
|
||||
|
||||
useCallable(
|
||||
object : Callable<Unit> {
|
||||
override fun call() {
|
||||
println("Hello world")
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
foo() {
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
{
|
||||
println("Hello world")
|
||||
},
|
||||
)
|
||||
|
||||
useCallable(
|
||||
Callable { println("Hello world") },
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo,
|
||||
testtest(
|
||||
testtest(
|
||||
foofoo,
|
||||
),
|
||||
),
|
||||
testsa,
|
||||
)
|
||||
|
||||
testtest(
|
||||
foofoo, fososos, testtest(testtest(foofoo)),
|
||||
)
|
||||
|
||||
}
|
||||
+19
@@ -197,4 +197,23 @@ fun foo() {
|
||||
|
||||
useCallable(Callable { println("Hello world") } // ffd
|
||||
)
|
||||
|
||||
useCallable(object : Callable<Unit> { override fun call() { println("Hello world") }
|
||||
},)
|
||||
|
||||
useCallable(foo() { println("Hello world")
|
||||
},)
|
||||
|
||||
useCallable({
|
||||
println("Hello world") },)
|
||||
|
||||
useCallable(Callable { println("Hello world") }
|
||||
,)
|
||||
|
||||
testtest(foofoo, testtest(testtest(
|
||||
foofoo,)), testsa)
|
||||
|
||||
testtest(foofoo, fososos, testtest(testtest(foofoo))
|
||||
,)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user