diff --git a/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticSimpleReceiver.kt b/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticSimpleReceiver.kt index 82ca6f58225..87a1367a1e0 100644 --- a/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticSimpleReceiver.kt +++ b/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticSimpleReceiver.kt @@ -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 \ No newline at end of file diff --git a/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticStateMachineReceiver.kt b/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticStateMachineReceiver.kt index e8ae813e3a4..27005028ea3 100644 --- a/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticStateMachineReceiver.kt +++ b/compiler/testData/checkLocalVariablesTable/completionInSuspendFunction/staticStateMachineReceiver.kt @@ -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 \ No newline at end of file