Keep annotations on generated declarations
manosbatsis opened this issue · 2 comments
manosbatsis commented
Would be great if
@MutableImpl(annotationPackages = [foo.Bar::class])
interface Sample {
@foo.Bar
val sample: String
@get:foo.Baz
val number: Int
}
generated
class MutableSample(
@foo.Bar
public override var sample: String,
@get:foo.Baz
public override var number: Int
) : Sample
Happy to add a PR!
y9vad9 commented
Do you mean that generated declaration should keep annotations?