[PSI2IR] Additional receiver -> context receiver

This commit is contained in:
Anastasiya Shadrina
2021-10-18 18:50:42 +07:00
committed by TeamCityServer
parent 3f50b675b1
commit f05ca5be33
9 changed files with 18 additions and 18 deletions
@@ -12,16 +12,16 @@ class Outer {
}
class Inner {
private /* final field */ val additionalReceiverField0: Outer
private /* final field */ val contextReceiverField0: Outer
constructor(<this>: Outer, arg: Any) /* primary */ {
super/*Any*/()
<this>.#additionalReceiverField0 = <this>
<this>.#contextReceiverField0 = <this>
/* <init>() */
}
fun bar(): Int {
return <this>.#additionalReceiverField0.<get-x>()
return <this>.#contextReceiverField0.<get-x>()
}
}