octylFractal
12/25/2018, 12:15 AMabstract var
properties? I have this:
sealed class Tag<T> { // note: TagId/SongId classes are inline
abstract var id: TagId
abstract var songId: SongId
abstract var data: T
}
but it only generates a setter for data
. the other two only have gettersorangy
12/25/2018, 7:06 AM