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