I need to figure out the deterministic pattern for...
# multiplatform
p
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