Revert "refactored conditional jump generation to enable and/or generation"

This reverts commit b74bdb9cfd.
This commit is contained in:
Dmitry Jemerov
2011-04-08 20:02:26 +02:00
parent b74bdb9cfd
commit 5a0a03c1e4
5 changed files with 92 additions and 100 deletions
+1
View File
@@ -0,0 +1 @@
fun foo(b: Boolean): Int { return if (b) 15 else 20 }
+4
View File
@@ -0,0 +1,4 @@
fun foo(b: Boolean) : Int {
if (b) return 15;
return 20;
}