Uast, Minor: UAnnotated is now always an UElement

This commit is contained in:
Yan Zhulanow
2016-03-22 22:02:07 +03:00
parent 2c003d16f2
commit cdd98592e4
@@ -27,6 +27,6 @@ interface UAnnotation : UElement, UNamed, UFqNamed, NoTraverse {
valueArguments.joinToString { it.renderString() } + ")"
}
interface UAnnotated {
interface UAnnotated : UElement {
val annotations: List<UAnnotation>
}