Find Usages: Restrict search scope for private class members

#KT-6124 Fixed
This commit is contained in:
Alexey Sedunov
2014-10-27 14:51:33 +03:00
parent a2930a581f
commit a13f334df2
8 changed files with 25 additions and 24 deletions
@@ -1,3 +1 @@
New instance creation (10: 33) open fun processRequest() = Foo()
New instance creation (14: 44) override fun processRequest() = Server.Foo()
New instance creation (5: 24) println(Server.Foo())
@@ -1,3 +1 @@
Function call (12: 45) override fun processRequest() = "foo" + doProcessRequest()
Function call (5: 18) Server().doProcessRequest()
Function call (8: 33) open fun processRequest() = doProcessRequest()
@@ -1,3 +1 @@
Value read (10: 33) open fun processRequest() = Foo
Value read (14: 44) override fun processRequest() = Server.Foo
Value read (5: 26) println(Server().Foo)
@@ -1,3 +1 @@
Value read (12: 45) override fun processRequest() = "foo" + foo
Value read (5: 26) println(Server().foo)
Value read (8: 33) open fun processRequest() = foo
@@ -1,3 +1 @@
Value read (10: 45) override fun processRequest() = "foo" + foo
Value read (5: 26) println(Server().foo)
Value read (6: 33) open fun processRequest() = foo