Zac Sweers
01/10/2025, 5:11 PMConeSubstitutor
, but I'm not able to grok from sources alone how it should be used. Mostly trying to handle this case where I want to materialize the generic in the context of a subtype
interface Base<T> {
fun example(): T
}
abstract class BaseImpl : Base<String>
// Want to generate
abstract class GeneratedBaseImpl : BaseImpl {
override fun example(): String
}
bnorm
01/12/2025, 4:32 AMConeSubstitutor
.