KT-13298 Suggest names for overridden properties / functions in completion

#KT-13298 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-08-15 19:17:33 +03:00
parent 7ebf001d25
commit 7f07890f6a
20 changed files with 319 additions and 33 deletions
@@ -0,0 +1,10 @@
interface I {
fun ov_foo()
}
class A : I {
override fun ov<caret>
}
// ABSENT: override
// EXIST: { itemText: "override fun ov_foo() {...}", allLookupStrings: "ov_foo", tailText: null, typeText: "I", attributes: "bold" }