465138cfa1
#KT-14459 Fixed
11 lines
280 B
Kotlin
Vendored
11 lines
280 B
Kotlin
Vendored
// "Initialize with constructor parameter" "true"
|
|
// WITH_RUNTIME
|
|
abstract class Form<T>(val name: String){
|
|
var <caret>data: T?
|
|
set(value){
|
|
value?.let { processData(it) }
|
|
field = data
|
|
}
|
|
|
|
abstract protected fun processData(data: T)
|
|
} |