Fix new compiler tests (new receiver name mangling – $this$label)

This commit is contained in:
Yan Zhulanow
2019-02-25 14:37:25 +03:00
parent 133f021b26
commit e43fd713ef
2 changed files with 2 additions and 2 deletions
@@ -6,5 +6,5 @@ class A
suspend fun A.foo() {}
// METHOD : StaticSimpleReceiverKt.foo(LA;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
// VARIABLE : NAME=$receiver TYPE=LA; INDEX=0
// VARIABLE : NAME=$this$foo TYPE=LA; INDEX=0
// VARIABLE : NAME=$completion TYPE=Lkotlin/coroutines/Continuation; INDEX=1
@@ -10,7 +10,7 @@ suspend fun A.foo1(l: Long) {
}
// METHOD : StaticStateMachineReceiverKt.foo1(LA;JLkotlin/coroutines/Continuation;)Ljava/lang/Object;
// VARIABLE : NAME=$receiver TYPE=LA; INDEX=0
// VARIABLE : NAME=$this$foo1 TYPE=LA; INDEX=0
// VARIABLE : NAME=l TYPE=J INDEX=1
// VARIABLE : NAME=$completion TYPE=Lkotlin/coroutines/Continuation; INDEX=3
// VARIABLE : NAME=$continuation TYPE=Lkotlin/coroutines/Continuation; INDEX=5