Uast: making AbstractKotlinUClass not inherit from AbstractJavaUClass

This commit is contained in:
Nicolay Mitropolsky
2017-12-04 17:58:45 +03:00
committed by Nikolay Krasko
parent 084da3665a
commit e22e466485
8 changed files with 119 additions and 19 deletions
+22
View File
@@ -0,0 +1,22 @@
@Test
class A
annotation class MyAnnotation(val text: String)
@MyAnnotation("class")
class B {
@MyAnnotation("inB class")
class InB {
}
@MyAnnotation("companion")
companion object {
}
}
@MyAnnotation("object")
object Obj