Container presentation in slicer tree: no type for properties and show accessor

This commit is contained in:
Valentin Kipyatkov
2020-04-14 17:49:35 +03:00
parent 2ee776a0d8
commit 03126ba469
59 changed files with 156 additions and 127 deletions
@@ -2,7 +2,7 @@
6 val <bold>result = 1.property</bold> (in bar())
6 val result = <bold>1.property</bold> (in bar())
1 actual val Int.<bold>property: Any</bold>
2 get() = <bold>this</bold> (in property: Any on Int)
1 actual val <bold>Int</bold>.property: Any (in property: Any on Int)
2 get() = <bold>this</bold> (in property.get on Int)
1 actual val <bold>Int</bold>.property: Any (in property on Int)
6 val result = <bold>1</bold>.property (in bar())
3 expect val Int.<bold>property: Any</bold>
@@ -1,8 +1,8 @@
6 val result = <bold>1</bold>.property (in bar())
3 expect val <bold>Int</bold>.property: Any (in property: Any on Int)
1 actual val <bold>Int</bold>.property: Any (in property: Any on Int)
2 get() = <bold>this</bold> (in property: Any on Int)
2 <bold>get() = this</bold> (in property: Any on Int)
3 expect val <bold>Int</bold>.property: Any (in property on Int)
1 actual val <bold>Int</bold>.property: Any (in property on Int)
2 get() = <bold>this</bold> (in property.get on Int)
2 <bold>get() = this</bold> (in property on Int)
6 val result = 1.<bold>property</bold> (in bar())
6 val <bold>result = 1.property</bold> (in bar())
7 println(<bold>result</bold>) (in bar())