Basic annotation collector tests

This commit is contained in:
Yan Zhulanow
2015-05-14 16:20:09 +03:00
parent f12531dd6d
commit d9289df29e
19 changed files with 325 additions and 0 deletions
@@ -0,0 +1,8 @@
a javax.inject.Named 0
c 0 SomeClass
a javax.inject.Inject 1
f 1 SomeClass annotatedProperty
a org.jetbrains.annotations.Nullable 2
f 2 SomeClass annotatedProperty
m 2 SomeClass getAnnotatedProperty
m 1 SomeClass annotatedFunction
@@ -0,0 +1,14 @@
import javax.inject.*
Named("KotlinClass")
public class SomeClass {
Inject
public var annotatedProperty: String? = null
Inject
public fun annotatedFunction() {
}
}