Indent for ?. calls (KT-3913)

#KT-3913 Fixed
This commit is contained in:
Nikolay Krasko
2014-04-20 00:30:01 +04:00
parent c42908eff7
commit 195d4c54bf
10 changed files with 72 additions and 11 deletions
@@ -0,0 +1,11 @@
class Some {
fun some(): Some? = this
}
public fun bar(): String? =
Some()
?.some()
?.some()
?.some()!!
.toString()
@@ -0,0 +1,11 @@
class Some {
fun some(): Some? = this
}
public fun bar(): String? =
Some()
?.some()
?.some()
?.some()!!
.toString()