Files
kotlin-fork/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt
T
Vyacheslav Gerasimov 915f47133b UAST: Fix KotlinUMethod annotation handling, properly handle use site targets
#KT-16834 Fixed
 #KT-18893 Fixed
2017-08-09 15:34:34 +03:00

16 lines
468 B
Plaintext
Vendored

public final class PropertyWithAnnotationKt {
private static final var prop1: int = 0
private static var prop3: int = 0
public static final fun getProp1() : int = UastEmptyExpression
@TestAnnotation
public static final fun getProp2() : int = 0
public static final fun getProp3() : int = 0
@TestAnnotation
public static final fun setProp3(value: int) : void {
field = value
}
}
public abstract annotation TestAnnotation {
}