Thilo Schuchort
Thilo Schuchort
How else would I be able to mock the presenter when it's in the `HomeComponent`/`HomeModule`, not the `AppComponent`? I have tried just replacing the `AppComponent` like in the example you...
Can you maybe show me a code snippet of how you are using a scripting compiler with KCT? I'd like to better understand what you're doing. Support for Kotlin script...
I think what is happening here is that the kotlin jupyter kernel is doing its best to recreate the compilation environment that the calling code was compiled with and is...
Please send the output of `gradle dependencies` task and gradle files for relevant modules. I tried it just now with ``` tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { jvmTarget = "11" } }...
I believe that it would fall under the same issue, but I would have to investigate more closely to be sure, since I don't personally use multi-round-processing. It's also possible...
Please do, I will take a look at it.
If I had to guess, I would add an import to the test files (`import ai.hypergraph.kotlingrad.typelevel.CompileTest.TestEnvClass` or something like that). In the README, an import was not necessary because the...
If you have any good ideas how to abstract the dependency on kotlin-compiler-embeddable, let me know. I think publishing different artifacts for kotlin-compiler and kotlin-compiler-embeddable would not be feasible without...
I think the logic you are trying to test happens on the Gradle level outside the scope of `KotlinCompilation`. `K2JVMCompiler` has no concept of modules (beyond project jigsaw) as far...
AFAIK this stuff is completely undocumented and only passed on from person to person, so you will have to read the source code of the Kotlin Gradle Plugin or ask...