Does the Kotlin playground have DCE enabled for JS...
# javascript
c
Does the Kotlin playground have DCE enabled for JS IR? I'm surprised by the length of the JS output for:
Copy code
fun main() {
	println(Long.MAX_VALUE)
}
a
Yes. The length is huge now, because we emulate Long in js and don't use
bigint
. But we are going to change it and soon, the logic for Long will be not so huge. Also, there is a big number of code by
println
itself. We are working on it
a
Is there any ETA or issues about this ?
c
Thanks. If you have the ticket link, I'd be interested in following it