Pseudocode: Do not bind call value to callee expressions

This commit is contained in:
Alexey Sedunov
2014-06-10 17:25:16 +04:00
parent e94f96d457
commit 168b32920b
52 changed files with 351 additions and 477 deletions
@@ -9,15 +9,12 @@ fun test() : Unit {
}
}
---------------------
test <v0> NEW()
test() <v0> COPY
{ test() } <v0> COPY
test <v2> NEW()
test() <v2> COPY
{ test() } <v2> COPY
test <v3> NEW()
test() <v3> COPY
{ test() } <v3> COPY
test() <v0> NEW()
{ test() } <v0> COPY
test() <v2> NEW()
{ test() } <v2> COPY
test() <v3> NEW()
{ test() } <v3> COPY
try { test() } catch (any : Exception) { test() } finally { test() } <v4> NEW(<v0>, <v2>)
{ try { test() } catch (any : Exception) { test() } finally { test() } } <v4> COPY
=====================