Smart completion after "by" and "in": non-imported operators supported

This commit is contained in:
Valentin Kipyatkov
2016-03-24 16:42:05 +03:00
parent cda539d769
commit e8c35e16e0
13 changed files with 122 additions and 24 deletions
@@ -0,0 +1,8 @@
package dependency
interface X
interface Y : X
interface Z
operator fun X.contains(s: String): Boolean = true
fun Z.contains(s: String): Boolean = true