In kotlin I have the following code: `class FooPr...
# kotlin-native
t
In kotlin I have the following code:
class 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:
Copy code
kotlin("multiplatform") version "1.4.10"
kotlin("native.cocoapods") version "1.4.10"
kotlin("xcode-compat") version "0.2.5"