mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
13 lines
380 B
Plaintext
Vendored
13 lines
380 B
Plaintext
Vendored
class IntrospectorImpl(model: ModuleImpl) : Introspector<ModuleImpl>(model) {
|
|
private inner class SchemaRetriever(transaction: Any) : Introspector<ModuleImpl>.SchemaRetriever(transaction) {
|
|
internal fun retrieve() {
|
|
inSchema { schema -> println(schema) }
|
|
}
|
|
}
|
|
}
|
|
|
|
class ModuleImpl : Model {
|
|
override fun modify(modifier: ModelModifier) {}
|
|
}
|
|
|