Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertToAlsoIntention/after.kt.template
T
Toshiaki Kameyama 6a4c6eacd7 Add "Convert to also" intention
#KT-28699 Fixed
2018-12-18 12:21:56 +09:00

7 lines
124 B
Plaintext

fun foo() {
<spot>val a = MyClass().also {
it.setFoo(1)
it.setBar(2)
it.setBaz(3)
}</spot>
}