Join Slack
Powered by
I need to figure out the deterministic pattern for...
# multiplatform
p
Paul Woitaschek
11/18/2021, 4:10 PM
I need to figure out the deterministic pattern for code generation. For a structure like:
Copy code
sealed A { sealed B : A { data class C : B } data class D }
It seems to create
A.BC
and
A.D
Why not
ABC
or
A.B.C
but a mix of these? What's the logic behind this?
➕ 2
Open in Slack
Previous
Next