KT-1103 Public outer function from different package and source file is not visible in completion:

- Stubs elements are enabled
- Changed method for selecting indexing policy for plugin and compiler
- Quick fix for import unresolved top-level function added
This commit is contained in:
Nikolay Krasko
2012-01-31 14:10:08 +04:00
parent dbbd4c6902
commit 2826db7d9a
37 changed files with 569 additions and 270 deletions
@@ -0,0 +1,8 @@
// "Import Class" "true"
package functionimporttest
import functionimporttest.data.someTestFun
fun functionImportTest() {
someTestFun()
}
@@ -0,0 +1,7 @@
package functionimporttest.data
fun String.someTestFun() {
}
fun someTestFun() {
}
@@ -0,0 +1,6 @@
// "Import Class" "true"
package functionimporttest
fun functionImportTest() {
<caret>someTestFun()
}