KT-2128 Code completion after number with dot - don't complete on '.' only in ".."

#KT-2128 Fixed
This commit is contained in:
Nikolay Krasko
2012-09-20 14:52:18 +04:00
parent b081615e59
commit 1ba4e5aee0
6 changed files with 27 additions and 6 deletions
@@ -0,0 +1,3 @@
fun test() {
12.in<caret>
}
@@ -0,0 +1,3 @@
fun test() {
12.inc(). <caret>
}
@@ -0,0 +1,4 @@
fun test() {
for (i in 12.<caret>) {
}
}
@@ -0,0 +1,4 @@
fun test() {
for (i in 12.. ) {
}
}