gsala
11/27/2019, 9:48 AMEmerson Farrugia
11/27/2019, 3:45 PMfoo.java
deletion and foo.kt
creation that resulted from the Convert Java file to Kotlin file action, with some ostensibly simple updates to foo.kt
and the checkbox wasn't there, and history was lost on the commit. Whereas I have other commits containing more than just the conversion and the checkbox was there as the extra rename commit was created. Is there something deterministic I should be looking for?Greg Stepniewski
11/29/2019, 9:48 AMcaffeine
12/02/2019, 1:26 AMpoohbar
12/03/2019, 3:52 PMpoohbar
12/03/2019, 4:58 PMbjonnh
12/04/2019, 12:19 AMjdemeulenaere
12/05/2019, 10:50 AMnwh
12/05/2019, 10:22 PMCzar
12/08/2019, 2:32 PMCtrl+P
parameter hint tooltips?pniederw
12/09/2019, 4:55 AMmikehearn
12/09/2019, 12:22 PMPacane
12/09/2019, 8:49 PM@NotNull
annotations on fields/construction parameters, but the converter still makes everything nullablebjonnh
12/10/2019, 12:41 AMDmitry Kandalov
12/10/2019, 9:13 AMPaul Woitaschek
12/10/2019, 11:25 AMMax Raskin
12/11/2019, 7:17 PMtestDebugUnitTest
.
Has anybody encountered this issue and has a solution?
ThanksBrendan Weinstein
12/12/2019, 4:31 AM./gradlew
? I have a few sandboxes where I separate out specific parts of a library I am trying by file. Each file has its own fun main(args: Array<String>)
muralimohan962
12/12/2019, 8:24 AMbitkid
12/12/2019, 2:23 PMBrendan Weinstein
12/12/2019, 9:25 PMnapperley
12/17/2019, 12:30 AM// ...
interface ApplicationBase {
// ...
fun connectActivateSignal(slot: CPointer<CFunction<(app: CPointer<GApplication>, userData: gpointer) -> Unit>>,
userData: gpointer): ULong =
connectGtkSignal(obj = gAppPtr, signal = "activate", slot = slot, data = userData)
}
class Application(val id: String) : ApplicationBase {
// ...
}
And a hypothetical Kotlin Native program is developed where a Kotliner starts typing in the following with the carrot positioned in the parenthesis:
val app = Application("org.example.sampleapp")
app.connectActivateSignal()
Vitali Plagov
12/18/2019, 12:47 PMfun adminCancelCustomerLock() {
val admin = createAdmin()
openCustomerWithUser(admin)
customerPage.cancelLock()
customerPage.lockConfigurationBtn()
customerPage.lockBanner()
}
When I put a caret on any of customerPage
and hit Option+Enter -> Convert to run, then it transforms to:
fun adminCancelCustomerLock() {
val admin = createAdmin()
openCustomerWithUser(admin)
customerPage.run {
openCustomerWithUser(admin)
cancelLock()
lockConfigurationBtn()
lockBanner()
}
}
So, why it puts the openCustomerWithUser(admin)
inside the run
block if it wasn’t called on customerPage
instance?
A bug, perhaps?Paul Woitaschek
12/18/2019, 3:06 PMpniederw
12/19/2019, 7:26 AM[REPEATED_MODIFIER] Repeated 'abstract'
As a human, I find this quite ugly. I'd prefer:
Duplicate modifier 'abstract'
addamsson
12/25/2019, 2:40 PMExternal Dependencies
list in the Project sidebar in IntelliJ. What am I doing wrong? Even if I run gradle clean assemble
from the IDE it still doesn't get updated.Paul Woitaschek
12/26/2019, 9:58 AMmsink
12/27/2019, 7:19 AM12:14 Incompatible Kotlin/Native libraries
There are 1 libraries from the Kotlin/Native 1.3.70-eap-42 distribution attached to the project: stdlib
These libraries were compiled with a newer Kotlin/Native compiler and can't be read in IDE. Please edit Gradle buildfile(s) to use Kotlin Gradle plugin version 1.3.61. Then re-import the project in IDE.
12:14 Incompatible Kotlin/Native libraries
There are 7 libraries attached to the project that were compiled with a newer Kotlin/Native compiler and can't be read in IDE:
"builtin" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\builtin
"gdiplus" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\gdiplus
"iconv" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\iconv
"opengl32" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\opengl32
"posix" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\posix
"windows" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\windows
"zlib" at F:\work\.konan\kotlin-native-windows-1.3.70-eap-14002\klib\platform\mingw_x64\zlib
Please edit Gradle buildfile(s) to use Kotlin Gradle plugin version 1.3.61. Then rebuild the project and re-import it in IDE.
poohbar
12/30/2019, 2:07 PMpoohbar
12/30/2019, 3:58 PM