Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/localVar.kt.after
T
2018-03-06 15:15:40 +03:00

15 lines
564 B
Plaintext
Vendored

import kotlin.reflect.KProperty
// "Create extension function 'String.getValue', function 'String.setValue'" "true"
fun x(parameters: String) {
var n by parameters
}
private operator fun String.setValue(nothing: Nothing?, property: KProperty<*>, any: Any) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
private operator fun String.getValue(nothing: Nothing?, property: KProperty<*>): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}