it we be nice to be able to do : ``` expect class ...
# multiplatform
a
it we be nice to be able to do :
Copy code
expect class Select
(vararg properties: IProperty<*>) : Query, QueryCloneable<Select> {
// full class body here!

}
then in the jvm implementation:
Copy code
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