6560ecc82b
- Add extensions only when completion of static members is enabled (double ctrl + space and nonempty prefix) - Add full import for callables with receiver in `LookupElement.decorateAsStaticMember`
12 lines
135 B
Kotlin
Vendored
12 lines
135 B
Kotlin
Vendored
class T {
|
|
companion object {
|
|
fun T.foo() {}
|
|
}
|
|
}
|
|
|
|
fun T.usage() {
|
|
f<caret>
|
|
}
|
|
|
|
// INVOCATION_COUNT: 2
|
|
// ELEMENT: foo |