e195f0426e
This symbol represents the extension receiver of a callable and currently is used as the resolution target of `this` in a callable with extension.
6 lines
80 B
Kotlin
Vendored
6 lines
80 B
Kotlin
Vendored
class Foo {
|
|
val String.foo : Any
|
|
get() {
|
|
this@f<caret>oo
|
|
}
|
|
} |