[VISUALIZER] Add implicit receiver rendering in fir

This commit is contained in:
Ivan Kylchik
2021-02-18 18:14:37 +03:00
committed by TeamCityServer
parent 0ca0304865
commit 607c7b3e82
5 changed files with 72 additions and 42 deletions
@@ -2,6 +2,7 @@ package p
class A {
val aProp = 10
fun call() {}
}
class B {
@@ -11,6 +12,7 @@ class B {
fun foo(a: Int, b: Int): Int {
with(A()) {
aProp
call()
with(B()) {
aProp