aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Kotlin/KotlinLanguageService.kt
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-02-27 19:17:15 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-02-27 19:17:15 +0300
commit05c5a8f20167b652f918e8260fd16453efadf5ff (patch)
tree6bcc70e637623c307844a7f1dfda0856fe795069 /core/src/main/kotlin/Kotlin/KotlinLanguageService.kt
parent20b3b0d018248cbde0c509603c52c36445d996f0 (diff)
downloaddokka-05c5a8f20167b652f918e8260fd16453efadf5ff.tar.gz
dokka-05c5a8f20167b652f918e8260fd16453efadf5ff.tar.bz2
dokka-05c5a8f20167b652f918e8260fd16453efadf5ff.zip
Render functional type in parenthesis when it in receiver position
Diffstat (limited to 'core/src/main/kotlin/Kotlin/KotlinLanguageService.kt')
-rw-r--r--core/src/main/kotlin/Kotlin/KotlinLanguageService.kt10
1 files changed, 9 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Kotlin/KotlinLanguageService.kt b/core/src/main/kotlin/Kotlin/KotlinLanguageService.kt
index e54772b3..f33c8c96 100644
--- a/core/src/main/kotlin/Kotlin/KotlinLanguageService.kt
+++ b/core/src/main/kotlin/Kotlin/KotlinLanguageService.kt
@@ -414,7 +414,15 @@ class KotlinLanguageService : LanguageService {
if (signatureMapper != null) {
signatureMapper.renderReceiver(receiver, this)
} else {
- renderType(receiver.detail(NodeKind.Type), renderMode)
+ val type = receiver.detail(NodeKind.Type)
+
+ if (type.isFunctionalType()) {
+ symbol("(")
+ renderFunctionalType(type, renderMode)
+ symbol(")")
+ } else {
+ renderType(type, renderMode)
+ }
}
symbol(".")
}