Javier
01/10/2023, 12:21 PMtest/kotlin
is green, meanwhile functionalTest/kotlin
is blue.Manuel Dossinger
01/13/2023, 7:25 AMmkrussel
01/13/2023, 1:21 PMsindrenm
01/19/2023, 12:44 PMobject
with a data object
. However, this doesn't compile, as it's only available since 1.9. Is this known?
ClubProfileViewModel.kt375 The feature "data objects" is only available since language version 1.9
darkmoon_uk
01/20/2023, 4:35 AMrobstoll
01/20/2023, 1:28 PMwhen
for sealed interface even though all cases are covered. Is there already a corresponding ticket or should I create one.
btw. if I use add remaining branches
then adds all which have already been added and intellij then complains that those cases are never reached but the when
still complains that it is not exhaustive, using add remaining branches
again just duplicates the cases again :Dv79
01/21/2023, 8:22 PMJavier
01/25/2023, 9:43 AMPablichjenkov
01/25/2023, 7:46 PMJavier
01/26/2023, 10:46 AMcompilations
approach can automatically fix this kind of issues as it uses testRuns
?
val integrationTest by compilations.creating
testRuns.create(integrationTest.name) {
setExecutionSourceFrom(integrationTest)
}
dead.fish
01/27/2023, 7:58 AM!file:build//*
, !file:*/build//*
and various others, like documented here: https://www.jetbrains.com/help/idea/scope-language-syntax-reference.html#create-scope-from-existing-scopes. What am I doing wrong?Laurent Laborde
01/29/2023, 4:22 PMrkeazor
02/01/2023, 3:55 PMRuben Holen
02/07/2023, 2:08 PMRuben Holen
02/07/2023, 2:08 PMJustin Tuchek
02/08/2023, 5:17 PMwasyl
02/10/2023, 11:41 AMgit diff
in terminal shows much more useful diff than IJ, even though it’s much easier to revert chunks in IJ 😕 Is there an option to use the diff generated by local git
installation?mbonnin
02/10/2023, 8:36 PMSam
02/14/2023, 10:05 AM@sample
documentation links in the stdlib not be broken in IntelliJ? They show as clickable, but clicking them just shows an error.Eugen Martynov
02/17/2023, 4:47 PMMarcello Galhardo
02/20/2023, 3:24 PMrobstoll
02/21/2023, 11:32 AM@Suppress("BOUNDS_NOT_ALLOWED_IF_BOUNDED_BY_TYPE_PARAMETER" /* we don't care about java compatibility, hence OK*/)
to suppress the warning.
Unfortunately it is not supported that well (which is not a surprise) and intellij sometimes reports rubbish or does not detect type errors. Should I open issues for this?David Griffiths
02/22/2023, 9:03 AM-javaagent:[...]/kotlinx-coroutines-core-jvm-1.6.4.jar
and very occasionally I have seen the Coroutines tab appear but it is intermittent and most runs I don’t see it. This is with version 221-1.8.10-release-430-IJ5591.52
of the plugin. Also I can’t see any documentation for this way of working so maybe it is not officially supported? (I have “Disable coroutine agent” unchecked by the way)simon.vergauwen
02/22/2023, 9:06 AMReplaceWith
? To execute several of them in a specific order? Not sure if IntelliJ is the right place for this, but perhaps the idea CLI could offer a solution here? 🤔Adrian Witaszak
02/24/2023, 5:46 PMAdrian Witaszak
02/24/2023, 5:55 PMsindrenm
02/27/2023, 2:54 PMij_kotlin_packages_to_use_import_on_demand
config, but setting that value does not seem to have the same effect as the IDEA setting.mbonnin
03/01/2023, 2:40 PMThread.id
is deprecated in Java 19 (which is my JAVA_HOME). But I'm compiling with jvmTarget = "1.8"
so it shouldn't be a warning?Francis Reynders
03/05/2023, 9:24 AMexpect fun
rather than the JVM implementation, with no way to navigate to actual implemenations. I tried upgrading to 2023.1-Beta but same issues. Any idea on how to accomplish that?elect
03/06/2023, 10:46 AMLocals
window