No completion auto-popup after dot in float literal (but one test start to fail!)
This commit is contained in:
committed by
valentin
parent
3fcf0f7340
commit
93d8791df1
@@ -2,4 +2,5 @@ val Int.f: Float get() = this.toFloat()
|
||||
|
||||
val test = 1.<caret>
|
||||
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: f
|
||||
@@ -0,0 +1,4 @@
|
||||
val v = 1.<caret>
|
||||
|
||||
// INVOCATION_COUNT: 0
|
||||
// NUMBER: 0
|
||||
@@ -1,5 +1,6 @@
|
||||
fun test() {
|
||||
for (i in 12.<caret>) {
|
||||
val v = 1
|
||||
for (i in v.<caret>) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
fun test() {
|
||||
for (i in 12..) {
|
||||
val v = 1
|
||||
for (i in v..) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user