Scott White
05/09/2019, 5:13 PMelect
05/10/2019, 8:45 AMdavid-wg2
05/13/2019, 2:39 PMpoohbar
05/13/2019, 7:05 PMAndrew Gazelka
05/14/2019, 2:46 PMMatej Drobnič
05/15/2019, 7:39 AMelect
05/15/2019, 2:16 PMAndrew Gazelka
05/16/2019, 9:33 AMif(current == goall) return reconstructPath(cameFrom, current)
Kelvie
05/20/2019, 10:58 PMGuilherme Titschkoski
05/21/2019, 1:34 PMCasey Brooks
05/23/2019, 7:28 PM.trimMargin()
instead of .trimIndent()
when creating multiline strings?gregorbg
05/27/2019, 10:07 AMgavvvr
05/28/2019, 7:52 AMfinal
or I miss something?amadeu01
05/28/2019, 6:00 PMScratch output
but it does not show any printed dataRyan Benasutti
05/31/2019, 1:44 AMbasher
05/31/2019, 10:07 PMPierfrancesco Gulinelli
06/03/2019, 8:41 AMlouiscad
06/08/2019, 1:56 PMSimon Schubert
06/08/2019, 3:00 PM* Source files: control.kt, disposable.kt, base.kt, image.kt, paint.kt, text.kt, drawarea.kt, layouts.kt, libui.kt, table.kt, utils.kt, widgets.kt, window.kt
* Compiler version info: Konan: 1.2.1 / Kotlin: 1.3.31
* Output kind: LIBRARY
e: org.jetbrains.kotlin.util.KotlinFrontEndException: Front-end Internal error: Failed to analyze declaration Color
Cause: Protocol message tag had invalid wire type.
File being compiled at position: (11,5) in /Users/simon/projects/kotlin-libui/libui/src/nativeMain/kotlin/draw/base.kt
The root cause was thrown at: InvalidProtocolBufferException.java:99
The compiling worked fine before.
Uninstalled Intellij, cleared the cradle cache and the following folders:
~/Library/Application Support/IntelliJIdea2019.1
~/Library/Caches/IntelliJIdea2019.1
~/Library/Preferences/IntelliJIdea2019.1
Does anyone have a clue what’s happening?
Update: After deleting ~/.konan folder and gradle sync everything works again!! 🎉 😅Mike
06/09/2019, 8:46 PMAndrew Gazelka
06/09/2019, 10:00 PMelect
06/12/2019, 9:55 AMpoohbar
06/12/2019, 2:53 PMlist
.map {
val xyz = "hello"
// breakpoint here
"hi"
}
at the breakpoint the Variables window only shows me this(receiver)
but it does not show xyz
Allan Wang
06/18/2019, 12:57 AMfun a(): Int
Exists and I write
fun b() = a() + 2
I’d like to be able to automatically create
fun b(): Int = a() + 2
Currently I can view the inferred type but I still need to copy it myself, which isn’t easy with the pop up dialogkarelpeeters
06/18/2019, 1:41 PMdata class Test(val x: Int)
fun foo() = Test(3)
fun bar() {
val test = foo()
println(test)
}
Find usages of the Test class only yields the constructor call in foo
, nothing about bar
, even though it does obviously use it.
I looked trough the find unsages settings, and there you can select a couple more things, eg "usages of functions" and "usages of properties", but that still does't cover my bar
example.
Is there a way to really find all usages?Andrew Gazelka
06/19/2019, 3:39 AMelect
06/19/2019, 5:32 PMGauthierPLM
06/20/2019, 5:08 AMelect
06/21/2019, 12:57 PMMatej Drobnič
06/23/2019, 4:03 PM