Files
kotlin-fork/compiler/testData/codegen/boxInline
pyos 5d8aac456f JVM_IR: create temporaries for complex super constructor arguments
As for SAM wrappers, the bytecode sequence

    new A
    dup
    new B
    dup
    invokespecial B.<init>
    invokespecial A.<init>

breaks the inliner, so instead we do

    new B
    dup
    invokespecial B.<init>
    store x
    new A
    dup
    load x
    invokespecial A.<init>
2019-11-06 15:54:40 +01:00
..
2018-08-02 13:19:24 +02:00
2019-10-08 17:19:41 +02:00
2019-04-08 13:10:25 +02:00
2019-10-31 11:13:44 +03:00
2018-08-02 13:19:24 +02:00
2019-10-08 17:19:41 +02:00
2018-08-02 13:19:24 +02:00