PSI Unifier: Fix matching of this-expressions

#KT-8293 Fixed
This commit is contained in:
Alexey Sedunov
2016-01-12 17:18:53 +03:00
parent ed8674c0f9
commit 1d9bafe196
7 changed files with 51 additions and 0 deletions
@@ -0,0 +1,8 @@
// DISABLE-ERRORS
fun (String.() -> String).foo(x : String) {
x.<selection>this</selection>()
x.this()
x.this(1)
x.this@foo()
x.this@foo(2)
}
@@ -0,0 +1,9 @@
this
this
this
this@foo
this@foo