tieskedh
11/08/2020, 9:35 PMclass FooProcessor{
sealed class Response{
class TokenValid(...) : Response()
}
}
The autocompletions want me to use FooProcessorResponse.TokenValid
.
It however only works if I use FooProcessor.ResponseTokenValid
.
Is there a way to make the autocompletions match the actual names?
My plugin-dependencies are:
kotlin("multiplatform") version "1.4.10"
kotlin("native.cocoapods") version "1.4.10"
kotlin("xcode-compat") version "0.2.5"