Render property accessor annotations in .txt test data
If property accessor rendering is disabled in a test, render annotations on accessors as use-site-targeted, as was done with `@setparam:`-annotations. Otherwise they were lost
This commit is contained in:
+5
-5
@@ -17,11 +17,11 @@ public final class CustomDelegate {
|
||||
|
||||
@Ann public final class SomeClass {
|
||||
public constructor SomeClass()
|
||||
protected final val delegatedProperty: kotlin.String
|
||||
protected final var mutableProperty: kotlin.String
|
||||
public final val propertyWithCustomGetter: kotlin.Int
|
||||
protected final val simpleProperty: kotlin.String = "text"
|
||||
protected final val simplePropertyWithAnnotationList: kotlin.String = "text"
|
||||
@get:Ann protected final val delegatedProperty: kotlin.String
|
||||
@get:Ann protected final var mutableProperty: kotlin.String
|
||||
@get:Ann public final val propertyWithCustomGetter: kotlin.Int
|
||||
@get:Ann protected final val simpleProperty: kotlin.String = "text"
|
||||
@get:Ann protected final val simplePropertyWithAnnotationList: kotlin.String = "text"
|
||||
public final fun annotationOnFunction(/*0*/ a: kotlin.Int): kotlin.Int
|
||||
public final fun anotherFun(): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
|
||||
Reference in New Issue
Block a user