Completion: bold immediate members for extensions too
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
fun C.extFunForC(){}
|
||||
fun D.extFunForD(){}
|
||||
fun Any.extFunForAny(){}
|
||||
|
||||
open class C {
|
||||
fun foo() {
|
||||
if (this is D) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class D : C
|
||||
|
||||
// EXIST: { itemText: "extFunForD", attributes: "bold" }
|
||||
// EXIST: { itemText: "extFunForC", attributes: "" }
|
||||
// EXIST: { itemText: "extFunForAny", attributes: "" }
|
||||
Reference in New Issue
Block a user