orangy
sss
12/02/2016, 3:57 PMilya.chernikov
12/06/2016, 7:40 AMsss
12/06/2016, 7:56 AMsss
12/06/2016, 7:57 AMilya.chernikov
12/06/2016, 8:22 AMitbeha
12/07/2016, 6:40 PMERROR: Exception while analyzing expression at (30,37) in /Users/bhaug/Documents/Projects/knaif/src/main/kotlin/net/berndhaug/knaif/Knaif.kt:
String::trim
java.lang.IllegalStateException: @NotNull method org/jetbrains/kotlin/builtins/KotlinBuiltIns.getBuiltInClassByName must not return null
at org.jetbrains.kotlin.builtins.KotlinBuiltIns.getBuiltInClassByName(KotlinBuiltIns.java:305)
at org.jetbrains.kotlin.builtins.KotlinBuiltIns.getBuiltInClassByName(KotlinBuiltIns.java:298)
at org.jetbrains.kotlin.builtins.FunctionTypesKt.getFunctionTypeArgumentProjections(functionTypes.kt:125)
at org.jetbrains.kotlin.builtins.ReflectionTypes.getKFunctionType(ReflectionTypes.kt:80)
line 30 is return contents.split("\n").map(String::trim).filter { it != "" }.map(Duration.Companion::fromLine)
do you see anything obvious/known I’m triggering or something that’s known fixed in 1.1-M03?
not sure whether I want to upgrade right now because the plugin works well for me right now, but this is kinda showstopper.udalov
itbeha
12/08/2016, 9:48 AMudalov
-ea
in your case, I believepawel_byszewski
12/08/2016, 10:22 AMgildor
12/08/2016, 10:46 AMpawel_byszewski
12/08/2016, 2:25 PMval future = async<String> {
(1..5).map {
await(startLongAsyncOperation(it))
}.joinToString("\n")
}
kotlinx.coroutines requires at least 24 Android API level that is obviously unacceptable at this momentpawel_byszewski
12/08/2016, 2:44 PMkirillrakhman
12/08/2016, 3:13 PMkirillrakhman
12/08/2016, 3:13 PMgrandstaish
12/08/2016, 9:16 PMorangy
yan
12/09/2016, 2:14 PMyan
12/09/2016, 2:14 PMgrandstaish
12/09/2016, 8:44 PMdamianpetla
12/13/2016, 3:51 PM1.0.6
to be released?damianpetla
12/13/2016, 3:52 PMapply plugin: ‘kotlin-kapt’
?vmironov
12/13/2016, 3:59 PMapply plugin: 'kotlin-kapt'
is the way to goyole
12/13/2016, 4:51 PMkirillrakhman
12/13/2016, 6:19 PMyole
12/13/2016, 6:19 PMkirillrakhman
12/13/2016, 6:19 PMkirillrakhman
12/15/2016, 9:46 AMWarning:(55, 71) Kotlin: '%' is resolved to deprecated 'mod' operator. Replace with '.mod' or add operator 'rem'when using
%
on ints. Is this only temporary until operator fun Int.rem
is added to stdlib?kirillrakhman
12/15/2016, 9:47 AMWarning:(38, 21) Kotlin: Protected function call from public-API inline function is deprecatedwhen calling a protected function from a protected inline function. Is this right?