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:
+2
-2
@@ -2,8 +2,8 @@ package
|
||||
|
||||
public final class A {
|
||||
public constructor A()
|
||||
@kotlin.js.JsName(name = "x_") public final val x: kotlin.Int = 0
|
||||
public final var y: kotlin.Int
|
||||
@kotlin.js.JsName(name = "x_") @get:kotlin.js.JsName(name = "getX_") public final val x: kotlin.Int = 0
|
||||
@get:kotlin.js.JsName(name = "getY_") public final var y: kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
Reference in New Issue
Block a user