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