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:
@@ -1,9 +1,9 @@
|
||||
package
|
||||
|
||||
public val v1: kotlin.String
|
||||
@get:kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public val v1: kotlin.String
|
||||
@kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public val v2: kotlin.String = ""
|
||||
public var v3: kotlin.String
|
||||
public var v4: kotlin.String
|
||||
public var v5: kotlin.String
|
||||
@get:kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public var v3: kotlin.String
|
||||
@set:kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public var v4: kotlin.String
|
||||
@get:kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") @set:kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public var v5: kotlin.String
|
||||
@kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "") public var v6: kotlin.String
|
||||
public fun test(): kotlin.Unit
|
||||
|
||||
Reference in New Issue
Block a user