14 lines
229 B
Plaintext
Vendored
14 lines
229 B
Plaintext
Vendored
abstract class BaseFirBuilder<T : Any?> {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
inline fun <T : Any?> withCapturedTypeParameters(block: Function0<T>): T {
|
|
return block.invoke()
|
|
}
|
|
|
|
}
|
|
|