Files
kotlin-fork/compiler/testData/cfg/backingFieldAccess.instructions
T
Svetlana Isakova aa713ef1f6 generate pseudocode for property accessor only if the property is local
otherwise check it independently like a function
2014-02-12 12:48:12 +04:00

23 lines
346 B
Plaintext

== C ==
class C {
val a: Int
get() = 1
{
$a
}
}
---------------------
L0:
<START>
v(val a: Int get() = 1)
mark({ $a })
r($a)
L1:
<END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================