Presentation: Add file name to the presentation of private top-level declaration

#KT-13838 Fixed
This commit is contained in:
Alexey Sedunov
2016-09-15 14:25:48 +03:00
parent 4adfb18990
commit 4313f249a4
4 changed files with 42 additions and 7 deletions
@@ -0,0 +1,19 @@
package foo.bar
private class test
private fun Int.test() = 1
private fun test() = 2
private val Int.test: Int
get() = 3
private val test = 4
// SEARCH_TEXT: test
// REF: (for Int in privateTopLevelDeclarations.kt in foo.bar).test
// REF: (for Int in privateTopLevelDeclarations.kt in foo.bar).test()
// REF: (privateTopLevelDeclarations.kt in foo.bar).test
// REF: (privateTopLevelDeclarations.kt in foo.bar).test
// REF: (privateTopLevelDeclarations.kt in foo.bar).test()