aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Model
diff options
context:
space:
mode:
authorSimon Ogorodnik <sem-oro@yandex.ru>2016-11-28 18:31:56 +0300
committerGitHub <noreply@github.com>2016-11-28 18:31:56 +0300
commite9cf2d779c03e278ddfd5adb0d1c743961d8d07a (patch)
tree9fc3ad76cfe1a3b939258fdc005cdd554fbd2562 /core/src/main/kotlin/Model
parent17a9a1774ec10690a031ae7afba5f5cfc59a9f24 (diff)
parent575caeb1cb2a97750f8cc220d3100fc240312671 (diff)
downloaddokka-e9cf2d779c03e278ddfd5adb0d1c743961d8d07a.tar.gz
dokka-e9cf2d779c03e278ddfd5adb0d1c743961d8d07a.tar.bz2
dokka-e9cf2d779c03e278ddfd5adb0d1c743961d8d07a.zip
Merge pull request #114 from Kotlin/0.9.10/typealias
Type alias support
Diffstat (limited to 'core/src/main/kotlin/Model')
-rw-r--r--core/src/main/kotlin/Model/DocumentationNode.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Model/DocumentationNode.kt b/core/src/main/kotlin/Model/DocumentationNode.kt
index 9aacbca0..def0f626 100644
--- a/core/src/main/kotlin/Model/DocumentationNode.kt
+++ b/core/src/main/kotlin/Model/DocumentationNode.kt
@@ -13,6 +13,7 @@ enum class NodeKind {
Exception,
EnumItem,
Object,
+ TypeAlias,
Constructor,
Function,
@@ -30,6 +31,8 @@ enum class NodeKind {
UpperBound,
LowerBound,
+ TypeAliasUnderlyingType,
+
Modifier,
NullabilityModifier,
@@ -55,7 +58,7 @@ enum class NodeKind {
OverloadGroupNote;
companion object {
- val classLike = setOf(Class, Interface, Enum, AnnotationClass, Exception, Object)
+ val classLike = setOf(Class, Interface, Enum, AnnotationClass, Exception, Object, TypeAlias)
}
}