Supported excluded packages/classes in completion.
#KT-2413 in progress
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package excludedPackage
|
||||
|
||||
fun someFunction(): Int {
|
||||
}
|
||||
|
||||
val someProperty: Int = 5
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package notExcludedPackage
|
||||
|
||||
fun someOtherFunction(): Int {
|
||||
}
|
||||
|
||||
val someOtherProperty: Int = 5
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
val x: Int = some<caret>
|
||||
|
||||
// INVOCATION_COUNT: 2
|
||||
// NUMBER: 2
|
||||
// ABSENT: someFunction, someProperty
|
||||
// EXIST: someOtherFunction, someOtherProperty
|
||||
Reference in New Issue
Block a user