[VISUALIZER] Disable rendering of value arguments in psi part

For now instead of arguments will be rendered parameters
This commit is contained in:
Ivan Kylchik
2021-02-10 16:12:47 +03:00
committed by TeamCityServer
parent f2cf86a3ae
commit ce844a9bba
13 changed files with 33 additions and 33 deletions
@@ -143,7 +143,7 @@ class PsiVisualizer(private val file: KtFile, analysisResult: AnalysisResult) :
return null
}
val descriptor = resolvedCall.resultingDescriptor
val descriptor = resolvedCall.candidateDescriptor
val typeArguments = resolvedCall.typeArguments
.takeIf { it.isNotEmpty() }
?.values?.joinToString(", ", "<", ">") { renderType(it) } ?: ""