Vadim Mishenev
Vadim Mishenev
Reproducer: https://github.com/Kotlin/dokka/commit/18e2b6092eb3e1c5cfbc0acf8c19d35685d93737 This is blocked by https://youtrack.jetbrains.com/issue/KT-70384/Analysis-API-Standalone-The-same-class-in-the-same-two-renamed-jars-is-unresolved --- Theoretically having classes with the same FQN in different jars is enough to reproduce it.
> What if we remove the var keyword? Should abc become unresolved, or are properties preferred over parameters? If the latter, why so? In this example, another rule is also...
Thank you for your review. This document is the first step in starting to work on KDoc ### Lack of different perspectives > I think KDoc in general should be...
It is blocked by https://youtrack.jetbrains.com/issue/KT-64067/Analysis-API-Member-scope-has-an-inherited-nested-class-from-Java (Update: **fixed**)
This is blocked by https://youtrack.jetbrains.com/issue/KT-71862/Analysis-API-Standalone-Memory-leak-LowMemoryWatcherManager-does-not-release-resources
> The main question at my side is, how it will affect end-users? I do not know) This test is quite artificial with almost no code. On real projects with...
JIC I have tested K2 with DGPv2 on a project (50 submodules) from the stress test (where a special VM flag is used). It works well on JVM 8 without...
In our integration test: [`HTMLAnchorElement`](https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-h-t-m-l-anchor-element/) is unresolved. It is from stdlib. However, other classes from the `react` library are resolved. In Kotlin 1.9.20, KGP passes `kotlin-stdlib-js-1.9.20.klib` and `kotlin-react-18.2.0-pre.490.klib` In Kotlin...
The `kotlin-stdlib-js-*.jar` has both the legacy and IR content, but AA filters out `.jar` [here.](https://github.com/JetBrains/kotlin/blob/d958e6faaff8ff1266e6aca3db083dba8a501dbd/analysis/low-level-api-fir/src/org/jetbrains/kotlin/analysis/low/level/api/fir/projectStructure/LLBinaryOriginLibrarySymbolProviderFactory.kt#L141)
The possible workaround is to add new `stlib`/`kotlin-dom-api-compat` into Dokka's classpath. ```kt implementation("org.jetbrains.kotlin:kotlin-stdlib-js:2.0.0") implementation("org.jetbrains.kotlin:kotlin-dom-api-compat:2.0.0") ```