KotlinLikeLangLineIndentProvider: support braces in blocks

Part of #KT-22211
Part of #KT-39353
This commit is contained in:
Dmitry Gridin
2020-06-09 22:20:59 +07:00
parent 447549f20d
commit 63a0b5bfde
15 changed files with 39 additions and 24 deletions
+11
View File
@@ -0,0 +1,11 @@
package testing
private fun <T> times(times : Int, body : () -> T) {}
fun main(args: Array<String>) {
times(3) {
<caret>}
}