Modifiers checking for type aliases.

Exposed type checking for type aliases.
This commit is contained in:
Dmitry Petrov
2016-06-10 13:10:53 +03:00
parent 139e219ebd
commit 0ff677596f
10 changed files with 142 additions and 3 deletions
@@ -38,6 +38,7 @@ enum class KotlinTarget(val description: String, val isDefault: Boolean = true)
TYPE("type usage", false),
EXPRESSION("expression", false), // includes FUNCTION_LITERAL, OBJECT_LITERAL
FILE("file", false),
TYPEALIAS("typealias"), // TODO support typealias as annotation target
TYPE_PROJECTION("type projection", false),
STAR_PROJECTION("star projection", false),