Till Rathschlag
08/21/2025, 2:03 PMSlackbot
08/26/2025, 4:09 PMKlitos Kyriacou
08/26/2025, 5:04 PMa
in the line starting val b
, and right click "Analyze code", "Data flow to here" is greyed out. If I do the exact same thing in Java, it works. I'm using version 2024.3.6.
fun main(args: Array<String>) {
val a = args.size
val b = args[a - 1]
}
ursus
08/26/2025, 9:08 PMTaha
08/27/2025, 10:34 AMOliver.O
08/28/2025, 4:39 PMCarter
08/29/2025, 11:32 AMrm
the kotlin-js-store directory
2. Run the gradle task to regenerate the Kotlin/JS lockfile
I can get it working locally, but not when checking the run configuration into the Git repo. I’ve tried:
1. Add the shell commands as an Before launch “Run external tool” configuration. The problem is that this creates some kind of run configuration that’s stored separately from my Gradle run configuration, therefore it doesn’t get checked into the repo
2. Create a shared Shell script run configuration, then have the Before launch use this. The problem with this option is the hardcoded working directory path, which requires all checkouts be at the same path. Run external tool option above allows a $ProjectFileDir$
variable
Ideas?theapache64
08/31/2025, 1:59 PMAntal János Monori
09/02/2025, 8:39 AMYuvaraj
09/02/2025, 4:16 PMmbonnin
09/04/2025, 4:50 PMloke
09/04/2025, 5:37 PMlouiscad
09/08/2025, 2:18 PMAlfonso Ristorato
09/08/2025, 6:33 PMreduceOrNull
, whereas I can see them for some other methods, for example forEach
.
When I try to download sources after going to the declarations of the methods I get redirected to the decompiled class file, where I can potentially click Download sources but somehow that gets blocked.Taha
09/10/2025, 4:23 PMMichael Friend
09/10/2025, 6:07 PMRok Oblak
09/11/2025, 8:27 AMpackage com.example.test
import ....prettyPrint
import ....Value
object DebugRenderers {
@JvmStatic
fun valuePretty(value: Value) = value.prettyPrint()
}
but then I want to add a custom data renderer in the debugger, and can't seem to get it to work, it always marks the DebugRenderers
with red (the path up until it is white). I'd use the original prettyPrint() extension but seems like extensions don't work either.
What am I missing? Can we even use a custom function for a data renderer in the debugger (ticket)?Fredrik Meyer
09/12/2025, 10:47 AMchristophsturm
09/16/2025, 10:19 AMHildebrandt Tobias
09/16/2025, 1:54 PM.map{ }
and .toString()
as unresolved.
The weird thing is two other people with Macs (one Intel, one M4) don't have any issues. His IntelliJ IDEA version ist 2025.2.1 the latest on the stable channel.
We already tried invalidating caches and everything, and non-multiplatform projects don't have that issue.darkmoon_uk
09/17/2025, 12:39 AMNathan Fallet
09/17/2025, 4:51 PMStephane Robin
09/17/2025, 7:34 PMCLOVIS
09/18/2025, 9:56 AMEdoardo Luppi
09/19/2025, 10:59 AMEdoardo Luppi
09/19/2025, 3:58 PMAugust
09/19/2025, 7:53 PM-<http://Djavax.net|Djavax.net>.ssl.trustStore=<home>/cacerts -<http://Djavax.net|Djavax.net>.ssl.trustStorePassword=changeit
) in:
• JAVA_OPTS env variable
• idea.vmoptions
• VM options in run
still, it's taken from projects java SDK.
The IntelliJ IDEA 2025.2.2 (Ultimate Edition), Build #IU-252.26199.169, built on September 18, 2025.
updated today, but on previous version, 2025.2.1 the same behaviour.
Adding the ssl debug result in:
javax.net.ssl|DEBUG|53|DefaultDispatcher-worker-12 @call-context#41|2025-09-19 21:40:47.152 CEST|TrustStoreManager.java:156|Inaccessible trust store: /<path>/.sdkman/candidates/java/<version>/lib/security/jssecacerts
javax.net.ssl|DEBUG|53|DefaultDispatcher-worker-12 @call-context#41|2025-09-19 21:40:47.156 CEST|TrustStoreManager.java:112|trustStore is: /<path>/.sdkman/candidates/java/<version>/lib/security/cacerts
I switch a lot between different sdk, and don't want to import all certs to multiply trust stores.Horatio Thomas
09/20/2025, 8:52 AMPiotr Krzemiński
09/21/2025, 2:44 PMcompiler-plugin/ast/src/test/kotlin/python/ast/PythonAstTest.kt
, and (see the screenshot) the compiler reports Unresolved reference ...
, and in the IDE I can normally navigate to the classes/functions that are unresolved according to the compiler. I've been banging my head for hours, it must be something small... on the other hand, looks like a bug in the compiler or the IDE, they should behave consistently, no?Gat Tag
09/21/2025, 8:28 PM*.gradle.kts
files completely fail in regards to symbol resolution within the IDE but are perfectly valid and execute within Gralde itself. It will fully finish configuration take a second and then all symbols will say they are not resolved. It's very frustrating. Has anyone else seen behavior like this?