KotlinAnnotatedElementsSearcher: handle local scope; correctly handle import aliases

This commit is contained in:
Dmitry Jemerov
2015-08-05 17:30:08 +02:00
parent cca7f08400
commit c29ebfbb04
7 changed files with 45 additions and 15 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
import org.junit.Test as test
import org.junit.Test as unittest
import org.junit.Test
class MyTestClass {
test fun test1() {}
unittest fun test1() {}
@Deprecated @test fun test2() {}
@Deprecated @unittest fun test2() {}
Test fun test3() {}
}