agrosner
04/20/2018, 3:30 PMexpect class Select
(vararg properties: IProperty<*>) : Query, QueryCloneable<Select> {
// full class body here!
}
then in the jvm implementation:
inherit actual class Select : InternalSelect {
fun <T : Any> from(table: Class<T>): From<T> = from(table.kotlin)
}
something like this that would glob the method onto the class when compiling for the jvm