KT-8529 Code completion for parameter name and type together replaces wrong range on Tab

#KT-8529 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-01-20 21:24:15 +03:00
parent bc8095ce33
commit 53fe1568c9
7 changed files with 72 additions and 10 deletions
@@ -0,0 +1,6 @@
class FooBar
fun f(b<caret>pp: (Int, Char) -> String)
// ELEMENT_TEXT: bar: FooBar
// CHAR: '\t'
@@ -0,0 +1,6 @@
class FooBar
fun f(bar: FooBar<caret>)
// ELEMENT_TEXT: bar: FooBar
// CHAR: '\t'
@@ -0,0 +1,6 @@
class FooBar
fun f(b<caret>pp: Int, c: Char)
// ELEMENT_TEXT: bar: FooBar
// CHAR: '\t'
@@ -0,0 +1,6 @@
class FooBar
fun f(bar: FooBar, <caret>c: Char)
// ELEMENT_TEXT: bar: FooBar
// CHAR: '\t'