Fixed FindUsages case on look up implementation getter/setters via property names

#KT-40788 Fixed
#KT-24616 Fixed

back-port from kotlin-ide commit aa5580bb5a7e96b209cdaa1c82f4e485ee001ae8
This commit is contained in:
Vladimir Dolzhenko
2020-08-10 22:02:44 +02:00
parent e49cdf0ca2
commit 8540f47c15
86 changed files with 157 additions and 61 deletions
@@ -71,7 +71,7 @@ class ExpressionsOfTypeProcessor(
var mode = if (ApplicationManager.getApplication().isUnitTestMode) Mode.ALWAYS_SMART else Mode.PLAIN_WHEN_NEEDED
@get:TestOnly
var testLog: MutableList<String>? = null
var testLog: MutableCollection<String>? = null
inline fun testLog(s: () -> String) {
testLog?.add(s())