16 lines
235 B
Plaintext
16 lines
235 B
Plaintext
class A {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun A.bar() {
|
|
<caret>foo()
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Resulting descriptor: fun foo(): Unit
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
This object = AExt{fun A.bar(): Unit}
|
|
Receiver argument = NO_RECEIVER |