Do not autopopup completion in name of generic function or property too

This commit is contained in:
Valentin Kipyatkov
2014-09-19 22:50:31 +04:00
committed by valentin
parent e6ea0537c8
commit 19fb090f28
11 changed files with 111 additions and 9 deletions
@@ -2,7 +2,7 @@ fun Strange(){}
fun Annotations<S<caret>
// INVOCATION_COUNT: 1
// INVOCATION_COUNT: 0
// EXIST: String
// EXIST: Set
// ABSENT: Strange
@@ -5,4 +5,5 @@ class Test {
fun Test.<caret>
}
// INVOCATION_COUNT: 1
// EXIST: Nested
@@ -5,4 +5,5 @@ class Test {
fun Test.N<caret>
}
// INVOCATION_COUNT: 1
// EXIST: Nested
@@ -0,0 +1,8 @@
class Outer {
class Nested
}
fun Outer.<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,8 @@
class Outer {
class Nested
}
fun <T> Outer.<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
fun <T> <caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
val <T> <caret>
// INVOCATION_COUNT: 0
// NUMBER: 0
@@ -0,0 +1,4 @@
var <T> a<caret>
// INVOCATION_COUNT: 0
// NUMBER: 0