Break out bytecodeText/conditions tests into smaller tests for if/while/do-while.

This commit is contained in:
Mark Punzalan
2019-03-14 21:55:11 -07:00
committed by max-kammerer
parent 9eb11ff3e9
commit 3585792b3b
26 changed files with 797 additions and 563 deletions
@@ -0,0 +1,13 @@
fun main(p: String?) {
// Generates IFNULL
do {
"loop"
} while (p == null)
}
//0 ICONST_0
//0 ICONST_1
//0 ACONST_NULL
//1 IFNULL
//1 IF
//0 GOTO