Kotlin Uast: support class literal expressions.

Ability to get type of class of class literal expressions.
This commit is contained in:
Yan Zhulanow
2016-03-22 20:11:23 +03:00
parent 6172f23d9b
commit 1ac6c0f2e9
4 changed files with 37 additions and 1 deletions
@@ -18,4 +18,6 @@ package org.jetbrains.uast
interface UClassLiteralExpression : UExpression, NoTraverse {
override fun logString() = "UClassLiteralExpression"
override fun renderString() = getExpressionType()?.name ?: "::class"
val type: UType
}