[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
@@ -74,15 +74,15 @@ fun bar(): Int {
|
||||
// │
|
||||
fun test(list: List<Int>) {
|
||||
// collections/MutableMap<Int, String>
|
||||
// │ fun <K, V> collections/mutableMapOf<Int, String>(): collections/MutableMap<Int, String>
|
||||
// │ fun <K, V> collections/mutableMapOf<Int, String>(): collections/MutableMap<K, V>
|
||||
// │ │
|
||||
val map = mutableMapOf<Int, String>()
|
||||
// test.list: collections/List<Int>
|
||||
// │ fun <T> collections/Iterable<Int>.forEach<Int>((Int) -> Unit): Unit
|
||||
// │ fun <T> collections/Iterable<T>.forEach<Int>((T) -> Unit): Unit
|
||||
// │ │ val test.map: collections/MutableMap<Int, String>
|
||||
// │ │ │ fun <K, V> collections/MutableMap<Int, String>.getOrPut<Int, String>(Int, () -> String): String
|
||||
// │ │ │ fun <K, V> collections/MutableMap<K, V>.getOrPut<Int, String>(K, () -> V): V
|
||||
// │ │ │ │ test.<anonymous>.it: Int
|
||||
// │ │ │ │ │ fun <T> collections/mutableListOf<???>(): collections/MutableList<???>
|
||||
// │ │ │ │ │ fun <T> collections/mutableListOf<???>(): collections/MutableList<T>
|
||||
// │ │ │ │ │ │ fun (String).plus(Any?): String
|
||||
// │ │ │ │ │ │ │
|
||||
list.forEach { map.getOrPut(it, { mutableListOf() }) += "" }
|
||||
|
||||
Reference in New Issue
Block a user