From cdd98592e45d123281e3fc84ca47361b8a38dce7 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Tue, 22 Mar 2016 22:02:07 +0300 Subject: [PATCH] Uast, Minor: UAnnotated is now always an UElement --- .../src/org/jetbrains/uast/baseElements/UAnnotation.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt b/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt index 6b8683816fa..d5a73e13253 100644 --- a/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt +++ b/plugins/uast-common/src/org/jetbrains/uast/baseElements/UAnnotation.kt @@ -27,6 +27,6 @@ interface UAnnotation : UElement, UNamed, UFqNamed, NoTraverse { valueArguments.joinToString { it.renderString() } + ")" } -interface UAnnotated { +interface UAnnotated : UElement { val annotations: List } \ No newline at end of file