nhaarman
09/10/2016, 10:16 AMorangy
yan
09/10/2016, 2:43 PMkotlin-dev
repository https://bintray.com/kotlin/kotlin-dev/kotlin/1.0.4-dev-2932. Please note it’s not kotlin-eap
.vmironov
09/11/2016, 1:32 PMcompileXxxKotlin
task is about 35% slower than compileXxxKotlin
+ compileXxxKotlinAfterJava
used to be (45 seconds in 1.0.3
vs 1 minute in 1.0.4-dev-2932
).
2. It consumes much more memory (no particular numbers, sorry).
3. I believe there is a memory leak somewhere. Gradle daemon consumes all the available memory (8GB in my case) after a few (7 - 10) successful builds and I'm not even able to compile the project anymore because everything becomes extremely slow and it takes up to 10 minutes to build the project.vmironov
09/11/2016, 5:32 PMcompileXxxKotlin
task takes 15 seconds to incrementally compile single line changeyan
09/11/2016, 10:07 PMvmironov
09/11/2016, 10:16 PMvmironov
09/11/2016, 10:17 PMalexey.tsvetkov
09/13/2016, 1:30 PM1.0.4-eap-118
is availablejosh.kovach
09/13/2016, 2:00 PMsdeleuze
09/13/2016, 2:02 PMvmironov
09/13/2016, 2:45 PM1.0.4-eap-118
?michaelsims
09/13/2016, 2:51 PMmichaelsims
09/13/2016, 2:52 PMjw
09/13/2016, 2:53 PMmichaelsims
09/13/2016, 2:53 PMjw
09/13/2016, 2:53 PMmichaelsims
09/13/2016, 3:00 PMmichaelsims
09/13/2016, 3:17 PMmichaelsims
09/13/2016, 3:18 PMdenis.zharkov
09/13/2016, 3:45 PMPasted image at 2016-09-09, 1:52 PM▾
kotlin.Throwable
when it’s missing most fields from java.lang.Throwable
?user
09/13/2016, 3:45 PMhttps://kotlinlang.slack.com/files/U0B8ZP13Q/F2A5X4QAC/pasted_image_at_2016_09_09_01_52_pm.png▾
kotlin.Throwable
?cedric
09/13/2016, 4:00 PMstackTrace
, printStackTrace()
, etc… unless I misreadcedric
09/13/2016, 4:01 PMpublic open class Throwable(open val message: String?, open val cause: Throwable?) {
constructor(message: String?) : this(message, null)
constructor(cause: Throwable?) : this(cause?.toString(), cause)
constructor() : this(null, null)
}
ilya.gorbunov
09/13/2016, 4:20 PMkotlin.Throwable
in stdlib, in 1.1 they are available as its own member functions.cedric
09/13/2016, 4:21 PMilya.gorbunov
09/13/2016, 4:21 PMyan
09/13/2016, 10:03 PMvmironov
09/13/2016, 10:06 PMkapt
vmironov
09/13/2016, 10:06 PM