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`
14 lines
148 B
Plaintext
Vendored
14 lines
148 B
Plaintext
Vendored
import Extensions.foo
|
|
|
|
class T
|
|
|
|
object Extensions {
|
|
fun T.foo() {}
|
|
}
|
|
|
|
fun T.usage() {
|
|
foo()<caret>
|
|
}
|
|
|
|
// INVOCATION_COUNT: 2
|
|
// ELEMENT: foo |