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

6 lines
96 B
Plaintext

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