[VISUALIZER] Disable rendering of value arguments in psi part
For now instead of arguments will be rendered parameters
This commit is contained in:
committed by
TeamCityServer
parent
f2cf86a3ae
commit
ce844a9bba
@@ -29,17 +29,17 @@ fun simple() {
|
||||
// collections/List<String>
|
||||
// │
|
||||
fun List<String>.modify() {
|
||||
// fun <T> collections/Collection<String>.plus<String>(String): collections/List<String>
|
||||
// fun <T> collections/Collection<T>.plus<String>(T): collections/List<T>
|
||||
// │
|
||||
this += "Alpha"
|
||||
// fun <T> collections/Collection<String>.plus<String>(String): collections/List<String>
|
||||
// fun <T> collections/Collection<T>.plus<String>(T): collections/List<T>
|
||||
// │
|
||||
this += "Omega"
|
||||
}
|
||||
|
||||
fun Any.modify() {
|
||||
// collections/List<Int>
|
||||
// │ fun <T> collections/Collection<Int>.plus<Int>(Int): collections/List<Int>
|
||||
// │ fun <T> collections/Collection<T>.plus<Int>(T): collections/List<T>
|
||||
// │ │ Int
|
||||
// │ │ │
|
||||
(this as List<Int>) += 42
|
||||
|
||||
Reference in New Issue
Block a user