Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameMissingOnAccessors.txt
T
Alexander Udalov d1e1e274d9 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
2018-10-24 18:17:12 +02:00

17 lines
774 B
Plaintext
Vendored

package
package foo {
@get:kotlin.js.JsName(name = "get_xx") public var xx: kotlin.Int
@get:kotlin.js.JsName(name = "get_ext") public var foo.A.ext: kotlin.Int
public final class A {
public constructor A()
@get:kotlin.js.JsName(name = "get_x") public final var x: kotlin.Int
@set:kotlin.js.JsName(name = "set_y") public final var y: kotlin.Int
@get:kotlin.js.JsName(name = "get_z") @set:kotlin.js.JsName(name = "set_z") public final var z: 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
}
}