@@ -55,7 +55,7 @@ class MyClass2 : MyClass1 {
55
55
get(): Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
56
56
val tmp_1: CoroutineScope = <this>.<get-coroutineScope2>()
57
57
val tmp_2: Flow<String> = <this>.<get-flowProperty>()
58
- return tmp_2. asNativeFlow<String>(scope = tmp_1)
58
+ return asNativeFlow<String>(/* <this> = tmp_2, */ scope = tmp_1)
59
59
}
60
60
61
61
}
@@ -99,7 +99,7 @@ class MyClass4 {
99
99
fun MyClass1.returnExtSuspendValueNative(): Function3<@ParameterName(name = "onResult") Function2<String, Unit, Unit>, @ParameterName(name = "onError") Function2<Throwable, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
100
100
val tmp_4: CoroutineScope = <get-coroutineScope1>()
101
101
return nativeSuspend<String>(scope = tmp_4, block = local suspend fun <anonymous>(): String {
102
- return ( <this>, <this>).returnExtSuspendValue( )
102
+ return <this>.returnExtSuspendValue(/* <this> = <this> */ )
103
103
}
104
104
)
105
105
}
@@ -135,7 +135,7 @@ class MyClass5 {
135
135
fun MyClass1.returnExtSuspendValueNative(): Function3<@ParameterName(name = "onResult") Function2<String, Unit, Unit>, @ParameterName(name = "onError") Function2<Throwable, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
136
136
val tmp_0: CoroutineScope? = null
137
137
return nativeSuspend<String>(scope = tmp_0, block = local suspend fun <anonymous>(): String {
138
- return ( <this>, <this>).returnExtSuspendValue( )
138
+ return <this>.returnExtSuspendValue(/* <this> = <this> */ )
139
139
}
140
140
)
141
141
}
@@ -205,18 +205,18 @@ fun box(): String {
205
205
$this$runBoxTest.await<String>(nativeSuspend = MyClass1().returnSuspendValueNative())
206
206
$this$runBoxTest.collect<String>(nativeFlow = MyClass2().<get-flowPropertyNative>())
207
207
$this$runBoxTest.await<String>(nativeSuspend = MyClass3().returnOtherSuspendValueNative())
208
- $this$runBoxTest.collect<String>(nativeFlow = MyClass3(). <get-flowExtProperty1Native>())
208
+ $this$runBoxTest.collect<String>(nativeFlow = <get-flowExtProperty1Native>(/* <this> = MyClass3() */ ))
209
209
with<MyClass4, Unit>(receiver = MyClass4(), block = local fun MyClass4.<anonymous>() {
210
- $this$runBoxTest.await<String>(nativeSuspend = ( $this$with, MyClass1()).returnExtSuspendValueNative( ))
210
+ $this$runBoxTest.await<String>(nativeSuspend = $this$with.returnExtSuspendValueNative(/* <this> = MyClass1() */ ))
211
211
}
212
212
)
213
- $this$runBoxTest.collect<String>(nativeFlow = MyClass3(). <get-flowExtProperty2Native>())
213
+ $this$runBoxTest.collect<String>(nativeFlow = <get-flowExtProperty2Native>(/* <this> = MyClass3() */ ))
214
214
with<MyClass5, Unit>(receiver = MyClass5(), block = local fun MyClass5.<anonymous>() {
215
- $this$runBoxTest.await<String>(nativeSuspend = ( $this$with, MyClass1()).returnExtSuspendValueNative( ))
215
+ $this$runBoxTest.await<String>(nativeSuspend = $this$with.returnExtSuspendValueNative(/* <this> = MyClass1() */ ))
216
216
}
217
217
)
218
218
$this$runBoxTest.await<String>(nativeSuspend = MyClass6().returnSuspendValueNative())
219
- $this$runBoxTest.await<String>(nativeSuspend = MyClass6().returnExtSuspendValueNative( ))
219
+ $this$runBoxTest.await<String>(nativeSuspend = returnExtSuspendValueNative(/* <this> = MyClass6() */ ))
220
220
$this$runBoxTest.await<String>(nativeSuspend = MyClass7().returnOtherSuspendValueNative())
221
221
}
222
222
)
@@ -239,7 +239,7 @@ val MyClass3.flowExtProperty2: Flow<String>
239
239
fun MyClass6.returnExtSuspendValueNative(): Function3<@ParameterName(name = "onResult") Function2<String, Unit, Unit>, @ParameterName(name = "onError") Function2<Throwable, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
240
240
val tmp_0: CoroutineScope? = null
241
241
return nativeSuspend<String>(scope = tmp_0, block = local suspend fun <anonymous>(): String {
242
- return <this>.returnExtSuspendValue( )
242
+ return returnExtSuspendValue(/* <this> = <this> */ )
243
243
}
244
244
)
245
245
}
@@ -257,22 +257,22 @@ fun returnSuspendValueNative(): Function3<@ParameterName(name = "onResult") Func
257
257
val MyClass3.flowExtProperty1Native: Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>>
258
258
get(): Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
259
259
val tmp_2: CoroutineScope = <get-coroutineScope1>()
260
- val tmp_3: Flow<String> = <this>.< get-flowExtProperty1>()
261
- return tmp_3. asNativeFlow<String>(scope = tmp_2)
260
+ val tmp_3: Flow<String> = <get-flowExtProperty1>(/* <this> = <this> */ )
261
+ return asNativeFlow<String>(/* <this> = tmp_3, */ scope = tmp_2)
262
262
}
263
263
264
264
@ObjCName(name = "flowExtProperty2")
265
265
val MyClass3.flowExtProperty2Native: Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>>
266
266
get(): Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
267
267
val tmp_4: CoroutineScope = <this>.<get-coroutineScope3>()
268
- val tmp_5: Flow<String> = <this>.< get-flowExtProperty2>()
269
- return tmp_5. asNativeFlow<String>(scope = tmp_4)
268
+ val tmp_5: Flow<String> = <get-flowExtProperty2>(/* <this> = <this> */ )
269
+ return asNativeFlow<String>(/* <this> = tmp_5, */ scope = tmp_4)
270
270
}
271
271
272
272
@ObjCName(name = "flowProperty")
273
273
val flowPropertyNative: Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>>
274
274
get(): Function3<@ParameterName(name = "onItem") Function3<String, Function0<Unit>, Unit, Unit>, @ParameterName(name = "onComplete") Function2<Throwable?, Unit, Unit>, @ParameterName(name = "onCancelled") Function2<Throwable, Unit, Unit>, Function0<Unit>> {
275
275
val tmp_6: CoroutineScope = <get-coroutineScope1>()
276
276
val tmp_7: Flow<String> = <get-flowProperty>()
277
- return tmp_7. asNativeFlow<String>(scope = tmp_6)
277
+ return asNativeFlow<String>(/* <this> = tmp_7, */ scope = tmp_6)
278
278
}
0 commit comments