martinb
10/02/2019, 2:55 PM▼ javaMethod1()
▼ kotlinMethod2()
▼ javaMethod3()
javaMethod4()
Example when starting from a Kotlin method:
▼ kotlinMethod2()
▼ javaMethod3()
Above, javaMethod4()
does not appear when starting from kotlinMethod2()
.
Note that there is a ▼
before javaMethod3()
, but nothing underneath.
Is this a known issue?Sylvain Patenaude
10/08/2019, 3:20 PMsksk
10/09/2019, 2:27 PMsksk
10/09/2019, 2:29 PMpoohbar
10/11/2019, 12:55 PMnpm
default where it automatically bumps to the latest minor version is a source of many bugs because many library maintainers don't understand semver.
When I update a library in Maven I do that for a reason after researching and studying the release notes. One-click action would not really save me any time in that process.Samuel Cook
10/11/2019, 10:16 PMGarouDan
10/16/2019, 3:53 PMSylvain Patenaude
10/16/2019, 3:55 PMBernhard
10/17/2019, 3:41 PMFranGSierra
10/18/2019, 12:00 PMMohamed Ibrahim
10/21/2019, 10:55 AMtrevjones
10/23/2019, 9:44 PMSylvain Patenaude
10/24/2019, 2:31 PMIlya Shaydullin [IceRock]
10/25/2019, 6:55 AM@SinceKotlin("1.1") public actual typealias Exception = java.lang.Exception
throw Exception( message = "TEST" )
> Task :microservice:payment:compileKotlin FAILED
e: /var/www/backend-services/microservice/payment/src/main/kotlin/com/icerockdev/microservice/payment/application/usecase/CardCreateUseCase.kt: (39, 19): None of the following functions can be called with the arguments supplied:
public final fun <init>(): kotlin.Exception /* = java.lang.Exception */ defined in kotlin.Exception
public final fun <init>(p0: String!): kotlin.Exception /* = java.lang.Exception */ defined in kotlin.Exception
public final fun <init>(p0: String!, p1: Throwable!): kotlin.Exception /* = java.lang.Exception */ defined in kotlin.Exception
public final fun <init>(p0: String!, p1: Throwable!, p2: Boolean, p3: Boolean): kotlin.Exception /* = java.lang.Exception */ defined in kotlin.Exception
public final fun <init>(p0: Throwable!): kotlin.Exception /* = java.lang.Exception */ defined in kotlin.Exception
w: Detected multiple Kotlin daemon sessions at build/kotlin/sessions
FAILURE: Build failed with an exception.
If use throw Exception("TEST" )
that build pass correctly.
On the compiler side, everything seems fine, but probably IDE should make a check by itself.thana
10/28/2019, 11:09 AMAsync stack trace
in the debugger when debugging a suspend
method - is that new in 2019.2.3?Dico
11/03/2019, 10:18 PMvineethraj49
11/04/2019, 9:57 PMCasey Brooks
11/04/2019, 11:37 PMKirill Zhukov
11/05/2019, 5:08 PM.iml
file that can be included in main project .iml
?ribesg
11/06/2019, 3:02 PMkarelpeeters
11/11/2019, 6:40 PMkotlinOptions.freeCompilerArgs += "-Xuse-experimental=kotlin.contracts.ExperimentalContracts"`
To my build.gradle
, and ./gradlew build
compiles fine. Intelij still gives errors when actually trying to run code using contracts:
Error:(552, 5) Kotlin: This declaration is experimental and its usage must be marked with '@kotlin.contracts.ExperimentalContracts' or '@UseExperimental(kotlin.contracts.ExperimentalContracts::class)'
Intelij seems to at least understand that it's a compiler argument, it automatically ends up in Project settings > Modules > main > Kotlin > Additional cmdline parameters. Is this just not supported right now or there another problem?bitkid
11/14/2019, 3:07 PMjava.lang.NullPointerException
at com.intellij.rt.coverage.data.ProjectData.touchLine(ProjectData.java:239)
pajatopmr
11/15/2019, 5:04 PMbasher
11/15/2019, 8:18 PMnapperley
11/20/2019, 6:17 AMribesg
11/22/2019, 8:50 AMnapperley
11/23/2019, 3:02 AMribesg
11/25/2019, 10:18 AMpzarycki
11/25/2019, 11:00 AMhttps://i.redd.it/7sfba3qln6821.png▾
poohbar
11/25/2019, 1:53 PM2019.3
coming out?poohbar
11/25/2019, 1:53 PM2019.3
coming out?Alexey Belkov [JB]
11/27/2019, 7:48 AME.Kisaragi
11/28/2019, 10:31 PM