Pseudocode: Add debug information to magic instructions
This commit is contained in:
@@ -12,8 +12,8 @@ fun foo() {
|
||||
"after"
|
||||
}
|
||||
---------------------
|
||||
<v1>: Int NEW: magic(val x: Int) -> <v1>
|
||||
<v2>: A NEW: magic(x) -> <v2>
|
||||
<v1>: Int NEW: magic[FAKE_INITIALIZER](val x: Int) -> <v1>
|
||||
<v2>: A NEW: magic[IMPLICIT_RECEIVER](x) -> <v2>
|
||||
"before" <v0>: * NEW: r("before") -> <v0>
|
||||
x <v3>: Int NEW: r(x|<v2>) -> <v3>
|
||||
"after" <v4>: * NEW: r("after") -> <v4>
|
||||
@@ -24,6 +24,6 @@ fun foo() {
|
||||
val b = x
|
||||
}
|
||||
---------------------
|
||||
<v0>: A NEW: magic(x) -> <v0>
|
||||
<v0>: A NEW: magic[IMPLICIT_RECEIVER](x) -> <v0>
|
||||
x <v1>: Int NEW: r(x|<v0>) -> <v1>
|
||||
=====================
|
||||
=====================
|
||||
|
||||
Reference in New Issue
Block a user