implier icon indicating copy to clipboard operation
implier copied to clipboard

Kotlin Symbol Processor library for creating Mutable, Immutable, Builders, DSL Builders from interfaces & abstract classes with properties.

Results 6 implier issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I have multimoduled project where I use implier. When I am trying to use generated entities I got next error: ``` Cannot access 'com.y9vad9.implier.GenericMarker' which is a...

bug

**Is your feature request related to a problem? Please describe.** I'm using implier for generating database-related entities. My case is to not generate mutable property of identifier (I am not...

enhancement

The most complex thing here is how to design validators. I see three ways: - (Not convenient for me, but still the way) design it with notations and annotations: ```kotlin...

enhancement
wontfix

Would be great if ```kotlin @MutableImpl(annotationPackages = [foo.Bar::class]) interface Sample { @foo.Bar val sample: String @get:foo.Baz val number: Int } ``` generated ```kotlin class MutableSample( @foo.Bar public override var sample:...

enhancement

**Describe the bug** `toPatched` function requires Mutable variant of entity even though it doesn't need it. It generates next code: ```kotlin public fun UserEntity.toPatched(patch: UserEntity): UserEntity { val isMutable =...

bug
invalid