gildor
01/19/2017, 10:22 AMantonkom
01/19/2017, 10:23 AMmikehearn
01/19/2017, 11:01 AMmikehearn
01/19/2017, 11:02 AMudalov
kotlin/jvm/internal/Ref$…
. You can look for CoroutineTransformerClassBuilderFactory
for an exampleudalov
grep kotlin/jvm/internal/Ref
on your binaries, maybe there’s just not a lot of variable refs at allmikehearn
01/19/2017, 12:28 PMjuliocbcotta
01/19/2017, 1:01 PMmikehearn
01/19/2017, 1:02 PMmikehearn
01/19/2017, 1:02 PMjuliocbcotta
01/19/2017, 1:03 PMpasssy
01/19/2017, 1:04 PMDebug info might be corrupt: Unexpected JDWP Error: 101
mikehearn
01/19/2017, 1:09 PMokkero
01/19/2017, 1:33 PMstepango
01/19/2017, 4:09 PMval
var could be changed after null check from another threadstepango
01/19/2017, 4:10 PMfield?.let{ doSmthWith(it)}
roman_gemini
01/19/2017, 4:13 PMjan.rabe
01/19/2017, 4:28 PMopen class MyCookie()
data class MyBrowny(val color: Int) : MyCookie()
however android studio still shows an error regarding data classes inheritance being forbidden, do i need a specific android studio version? (using 2.2.3 currently)jan.rabe
01/19/2017, 4:28 PMnitrog42
01/19/2017, 4:33 PMnitrog42
01/19/2017, 4:33 PMrwachol
01/19/2017, 5:07 PMdamian
01/19/2017, 5:16 PM.iml
file for the <KotlinVersionInfo>
section -- you may need to set apiLevel
and languageLevel
to 1.1
manuallyelect
01/19/2017, 5:16 PMjan.rabe
01/19/2017, 5:21 PMmg6maciej
01/19/2017, 5:35 PMdimsuz
01/19/2017, 5:43 PMval (id, code, name) = "11;33;44".split(";")
but can I auto create some data class similarly? Like
data class Country(val id: String, val code: String, val name: String)
val country: Country = "11;33;44".split(";")
I mean I tried and it doesn't work, maybe I miss some feature? 🙂dimsuz
01/19/2017, 5:44 PMorangy
christophsturm
01/19/2017, 5:46 PM