Does anybody happen to know if there’s already a b...
# javascript
s
Does anybody happen to know if there’s already a bug open for this problem:
Copy code
@JsExport
sealed class Foo {
  abstract val bar: Boolean
  
  data class AFoo(override val bar: Boolean) : Foo()
}
AFoo
will come out with a mangled
bar
.
1
a
Oh, wow. I'm not sure, that we know about it. Could you please create the ticket?
e
Not exactly related, but two other issues mention similar
sealed
problems https://youtrack.jetbrains.com/issue/KT-39193 https://youtrack.jetbrains.com/issue/KT-52800 Maybe looking at one of them will solve every one of them 👀