Completion: bold immediate members for extensions too

This commit is contained in:
Valentin Kipyatkov
2014-11-18 21:34:24 +03:00
parent a26388ef63
commit e0da6247af
16 changed files with 267 additions and 92 deletions
@@ -0,0 +1,17 @@
fun C.extFunForC(){}
fun T.extFunForT(){}
fun Any.extFunForAny(){}
open class C {
fun foo() {
if (this is T) {
<caret>
}
}
}
trait T
// EXIST: { itemText: "extFunForT", attributes: "bold" }
// EXIST: { itemText: "extFunForC", attributes: "bold" }
// EXIST: { itemText: "extFunForAny", attributes: "" }