29ab166e1b
Render resolved call to a separate file
16 lines
177 B
Plaintext
16 lines
177 B
Plaintext
// !CALL: foo
|
|
|
|
class A {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun bar(a: A) {
|
|
a.foo()
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Explicit receiver kind = THIS_OBJECT
|
|
This object = a
|
|
Receiver argument = NO_RECEIVER |