Generate annotations for declarations in psi2ir

This commit is contained in:
Dmitry Petrov
2018-04-03 17:47:03 +03:00
parent c2dced775d
commit 57077a5eb8
35 changed files with 1522 additions and 45 deletions
@@ -0,0 +1,15 @@
annotation class TestAnn(val x: String)
val test1: String
@TestAnn("test1.get") get() = ""
var test2: String
@TestAnn("test2.get") get() = ""
@TestAnn("test2.set") set(value) {}
@get:TestAnn("test3.get")
val test3: String = ""
@get:TestAnn("test4.get")
@set:TestAnn("test4.set")
var test4: String = ""