-
Update is skiped since `2.0.0` throws exception in ksp processor while collecting `@Injectable`.
Update after https://github.com/square/kotlinpoet/issues/2016 is resolved.
-
Caused by: java.lang.IllegalStateException: Could not parse metadata! This should only happen if you're using Kotlin
-
Hello Arrow Team,
I started a new AST-Parsing Library `kotlinx.ast` (https://github.com/kotlinx/ast) that can be used to read Kotlin source files into easy to use data classes (using [antlr-kotlin]…
-
My backend has a weird model defined. I can't really do anything about it. Moshi codegen breaks though.
```
@JsonClass(generateAdapter = true)
data class UserWrapper(
var id: Int? = 0,
…
-
* ~References to Kotlin files and other incorrect terminology need to be updated or removed.~
* All classes need have at least basic documentation.
* README should have more/better examples of Swift…
kdubb updated
2 years ago
-
After I bumped kotlin version to 1.9.20 & ksp as well in a project where I'm using kotlin-inject, I can't compile the desktop app anymore due to this error:
```
[ksp] java.lang.IllegalArgumentExcept…
-
The anvil-utils plugin throws `FileAlreadyExistsException` when I add a KSP processor to a Gradle module with the plugin enabled.
```
> Task ::kspDebugKotlin FAILED
e: [ksp] kotlin.io.FileAlready…
-
This code
```kotlin
@Fixture
data class Foo(val baz: Baz) {
@Fixture
data class Baz(val text: String)
}
@Fixture
data class Bar(val baz: Baz) {
@Fixture
data class Baz(va…
-
Subj.
Example:
```
import com.fasterxml.jackson.`annotation`.JsonProperty
/**
* Payload type for contactRequestAdd
*/
public data class ContactRequestAddPayload(
/**
* Request status…
-
At the moment, we generate the code by manipulating string directly, which is very verbose and hard to extend, sometimes is easy to generate buggy code, so I would suggest refactoring the codegen modu…