PSI Unifier: Fix matching of this-expressions
#KT-8293 Fixed
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fun (String.() -> String).foo(x : String) {
|
||||
x.<selection>this</selection>()
|
||||
x.this@foo()
|
||||
val t = this
|
||||
val tt = this@foo
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fun (String.() -> String).foo(x : String) {
|
||||
val function = this
|
||||
x.function()
|
||||
x.function()
|
||||
val t = function
|
||||
val tt = function
|
||||
}
|
||||
Reference in New Issue
Block a user