Add filtering of suggested expressions for postfix templates

Do not suggest qualified expression's selector or a part of user type
because they aren't really independent expressions
This commit is contained in:
Denis Zharkov
2016-09-22 14:08:25 +03:00
parent ab2b6743df
commit 23c0bdbd05
8 changed files with 63 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
class A {
fun bar() = 1
}
fun foo(a: A) {
val x = a.bar().val<caret>
}