yole
02/21/2017, 3:44 PMwhen
Paul Woitaschek
02/21/2017, 3:44 PMIan
02/21/2017, 6:46 PMopen class Event(open val type : Int)
, and then I create a subclass that’s a data class, like data class BigEvent(override val type : Int) : Event(type)
, is it necessarily to respecify type
in the subclass constructor as I’ve done here, or could this be determined implicitly? Seems like unnecessary boilerplateyole
02/22/2017, 7:10 AMBigEvent.type
storing the same value as Event.type
yole
02/22/2017, 7:11 AMPaul Woitaschek
02/22/2017, 8:23 AMIan
02/22/2017, 3:29 PMyole
02/22/2017, 3:29 PMIan
02/22/2017, 3:30 PMorangy
pabl0rg
02/23/2017, 10:29 AMjava.lang.NoSuchMethodError: kotlin.jvm.internal.Intrinsics.areEqual(Ljava/lang/Double;D)Z
yole
02/23/2017, 10:30 AMpabl0rg
02/23/2017, 10:32 AMpabl0rg
02/23/2017, 11:00 AMadeln
02/24/2017, 10:32 AMSola
02/27/2017, 3:17 AM1.1.0-rc-91
, the build.gradle.kts
keeps showing class is compiled by a pre-release version of Kotlin and cannot be loaded by this version of compiler
error in IDEA , what should i do?Sola
02/27/2017, 3:19 AM1.1.0-rc-91
of kotlingildor
02/27/2017, 3:23 AMSola
02/27/2017, 3:31 AMSola
02/27/2017, 3:32 AMbholota
02/28/2017, 7:53 AMwalmyrcarvalho
03/03/2017, 3:11 AMyan
03/03/2017, 1:52 PMspierce7
03/05/2017, 5:21 PMmikhail.zarechenskiy
03/07/2017, 6:49 PM<http://dl.bintray.com/kotlin/kotlin-eap-1.1>
as a repository for the build script and your projects; use 1.1.1-eap-26
as the version number for the compiler and the standard library.
The command-line compiler can be downloaded from the Github release page: https://github.com/JetBrains/kotlin/releases/tag/v1.1.1-rckirillrakhman
03/07/2017, 10:41 PMPaul Woitaschek
03/11/2017, 12:12 PMPaul Woitaschek
03/11/2017, 12:12 PMorangy