[FE] Render context receivers for functions, properties, and classes

This commit is contained in:
Anastasiya Shadrina
2021-11-22 20:04:50 +07:00
committed by TeamCityServer
parent 2954c5cc9c
commit 9e2271399e
41 changed files with 97 additions and 72 deletions
@@ -1,9 +1,9 @@
package
public fun </*0*/ T> f(/*0*/ lazy1: Lazy<kotlin.Int>, /*1*/ lazy2: Lazy<kotlin.CharSequence>, /*2*/ lazyT: Lazy<T>, /*3*/ lazyLazyT: Lazy<Lazy<T>>): kotlin.Unit
public fun test1(): kotlin.Unit
public fun </*0*/ T> Lazy<kotlin.Int>.test2(): kotlin.Unit
public fun </*0*/ T> Lazy<kotlin.Int>.test3(): kotlin.Unit
context(Lazy<kotlin.Int>, Lazy<kotlin.CharSequence>) public fun test1(): kotlin.Unit
context(Lazy<T>) public fun </*0*/ T> Lazy<kotlin.Int>.test2(): kotlin.Unit
context(Lazy<Lazy<T>>) public fun </*0*/ T> Lazy<kotlin.Int>.test3(): kotlin.Unit
public interface Lazy</*0*/ T> {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean