UAST: Fix KotlinUMethod annotation handling, properly handle use site targets

#KT-16834 Fixed
 #KT-18893 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2017-07-28 17:25:39 +03:00
parent f24488915a
commit 915f47133b
5 changed files with 57 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
annotation class TestAnnotation
@TestAnnotation
val prop1: Int = 0
@get:TestAnnotation
val prop2: Int
get() = 0
@set:TestAnnotation
var prop3: Int = 0
get() = 0
set(value) { field = value }