Files
kotlin-fork/compiler/tests-gen/org/jetbrains/kotlin
pyos d988853c11 JVM_IR: optimize out redundant delegated property receiver fields
Now this:

    class C {
        val x = something
        val y by x::property
    }

is *exactly* the same as this:

    class C {
        val x = something
        val y get() = x.property
    }

(plus a `getY$delegate` method)
2021-07-12 22:38:45 +02:00
..
2021-01-03 14:53:41 +01:00
2021-01-03 14:53:41 +01:00
2021-01-03 14:53:41 +01:00
2021-01-12 18:35:41 +03:00
2021-01-03 14:53:41 +01:00
2021-01-03 14:53:41 +01:00