don't show function literals and selectors of qualified expressions in "show expression type"
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
val x = listOf(1).map { q -> println(<caret>q) }
|
||||
|
||||
// TYPE: q -> <html>Int</html>
|
||||
// TYPE: println(q) -> <html>Unit</html>
|
||||
// TYPE: { q -> println(q) } -> <html>(Int) → Unit</html>
|
||||
// TYPE: listOf(1).map { q -> println(q) } -> <html>List<Unit></html>
|
||||
// TYPE: val x = listOf(1).map { q -> println(q) } -> <html>List<Unit></html>
|
||||
Reference in New Issue
Block a user