KT-12369 Completion: pressing dot after class name should not cause insertion of constructor call

#KT-12369 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-06-16 21:19:34 +03:00
parent b9719bfe82
commit 0bc5007147
4 changed files with 43 additions and 1 deletions
@@ -0,0 +1,13 @@
class Color {
companion object {
val RED = Color()
}
}
fun getColor(): Color? {
return Color<caret>
}
// INVOCATION_COUNT: 0
// ELEMENT: *
// CHAR: '.'
@@ -0,0 +1,13 @@
class Color {
companion object {
val RED = Color()
}
}
fun getColor(): Color? {
return Color.<caret>
}
// INVOCATION_COUNT: 0
// ELEMENT: *
// CHAR: '.'